diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-17 13:18:01 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-17 13:18:01 +0000 |
commit | 1b7daa2980e22b99dbcd849195a753f705146d1c (patch) | |
tree | ee6b18024d25e632f25c394ba93c10a2e908dde0 /lib/libcrypto | |
parent | d3876c595955468751ad1c725486fd4fc865b3cc (diff) |
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 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/comp/c_zlib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/comp/c_zlib.c b/lib/libcrypto/comp/c_zlib.c index 9db0ae26bc2..009737d59d2 100644 --- a/lib/libcrypto/comp/c_zlib.c +++ b/lib/libcrypto/comp/c_zlib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: c_zlib.c,v 1.25 2022/12/26 07:18:51 jmc Exp $ */ +/* $OpenBSD: c_zlib.c,v 1.26 2023/04/17 13:18:00 tb Exp $ */ /* * --------------------------------------------------------------------------- * Major patches to this file were contributed by @@ -122,6 +122,7 @@ #include <openssl/comp.h> #include <openssl/err.h> +#include "bio_local.h" #include "comp_local.h" COMP_METHOD *COMP_zlib(void ); |