diff options
author | tb <> | 2022-01-07 09:02:18 +0000 |
---|---|---|
committer | tb <> | 2022-01-07 09:02:18 +0000 |
commit | 8d74ebda124d78459caefe10402685b3d761662a (patch) | |
tree | 63702983643c0f30ff2f3288b678033f62b0de2d /src/lib/libcrypto/asn1 | |
parent | d93aa16238be38535b8d4292ab7ac0ac0a70ce70 (diff) | |
download | openbsd-8d74ebda124d78459caefe10402685b3d761662a.tar.gz openbsd-8d74ebda124d78459caefe10402685b3d761662a.tar.bz2 openbsd-8d74ebda124d78459caefe10402685b3d761662a.zip |
Add a new, mostly empty, bio_local.h and include it in the files
that will need it in the upcoming bump.
discussed with jsing
Diffstat (limited to 'src/lib/libcrypto/asn1')
-rw-r--r-- | src/lib/libcrypto/asn1/bio_asn1.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/bio_asn1.c b/src/lib/libcrypto/asn1/bio_asn1.c index 016e570480..6bc42009f7 100644 --- a/src/lib/libcrypto/asn1/bio_asn1.c +++ b/src/lib/libcrypto/asn1/bio_asn1.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bio_asn1.c,v 1.15 2021/12/25 13:17:48 jsing Exp $ */ | 1 | /* $OpenBSD: bio_asn1.c,v 1.16 2022/01/07 09:02:17 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project. | 3 | * project. |
4 | */ | 4 | */ |
@@ -67,6 +67,8 @@ | |||
67 | #include <openssl/bio.h> | 67 | #include <openssl/bio.h> |
68 | #include <openssl/asn1.h> | 68 | #include <openssl/asn1.h> |
69 | 69 | ||
70 | #include "bio_local.h" | ||
71 | |||
70 | /* Must be large enough for biggest tag+length */ | 72 | /* Must be large enough for biggest tag+length */ |
71 | #define DEFAULT_ASN1_BUF_SIZE 20 | 73 | #define DEFAULT_ASN1_BUF_SIZE 20 |
72 | 74 | ||