From 1732c006a2f72ce4389a17eb090ff319f4ad8112 Mon Sep 17 00:00:00 2001 From: tb Date: Mon, 17 Apr 2023 13:18:00 +0000 Subject: [PATCH] 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... --- lib/libcrypto/comp/c_zlib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 #include +#include "bio_local.h" #include "comp_local.h" COMP_METHOD *COMP_zlib(void ); -- 2.20.1