diff options
author | tb <> | 2023-04-17 13:18:00 +0000 |
---|---|---|
committer | tb <> | 2023-04-17 13:18:00 +0000 |
commit | eee07eccd0ae3d14ee41b3abdaffca9c58db65de (patch) | |
tree | a1a943db6631ba8a59923024a35f229a9244b7f8 /src/lib | |
parent | 329c6e62a3c1dfab0911df8c359fcc8d10ee9d6a (diff) | |
download | openbsd-eee07eccd0ae3d14ee41b3abdaffca9c58db65de.tar.gz openbsd-eee07eccd0ae3d14ee41b3abdaffca9c58db65de.tar.bz2 openbsd-eee07eccd0ae3d14ee41b3abdaffca9c58db65de.zip |
c_zlib.c needs bio_local.h with -DZLIB.
Apparently nobody tried to compile libcrypto with ZLI since Jan 2022.
Maybe this means that we can unifdef -U ZLIB or maybe not...
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/comp/c_zlib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/comp/c_zlib.c b/src/lib/libcrypto/comp/c_zlib.c index 9db0ae26bc..009737d59d 100644 --- a/src/lib/libcrypto/comp/c_zlib.c +++ b/src/lib/libcrypto/comp/c_zlib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: c_zlib.c,v 1.25 2022/12/26 07:18:51 jmc Exp $ */ | 1 | /* $OpenBSD: c_zlib.c,v 1.26 2023/04/17 13:18:00 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * --------------------------------------------------------------------------- | 3 | * --------------------------------------------------------------------------- |
4 | * Major patches to this file were contributed by | 4 | * Major patches to this file were contributed by |
@@ -122,6 +122,7 @@ | |||
122 | #include <openssl/comp.h> | 122 | #include <openssl/comp.h> |
123 | #include <openssl/err.h> | 123 | #include <openssl/err.h> |
124 | 124 | ||
125 | #include "bio_local.h" | ||
125 | #include "comp_local.h" | 126 | #include "comp_local.h" |
126 | 127 | ||
127 | COMP_METHOD *COMP_zlib(void ); | 128 | COMP_METHOD *COMP_zlib(void ); |