c_zlib.c needs bio_local.h with -DZLIB.
authortb <tb@openbsd.org>
Mon, 17 Apr 2023 13:18:00 +0000 (13:18 +0000)
committertb <tb@openbsd.org>
Mon, 17 Apr 2023 13:18:00 +0000 (13:18 +0000)
Apparently nobody tried to compile libcrypto with ZLI since Jan 2022.
Maybe this means that we can unifdef -U ZLIB or maybe not...

lib/libcrypto/comp/c_zlib.c

index 9db0ae2..009737d 100644 (file)
@@ -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
 #include <openssl/comp.h>
 #include <openssl/err.h>
 
+#include "bio_local.h"
 #include "comp_local.h"
 
 COMP_METHOD *COMP_zlib(void );