From 0d894c9dbeb6cf6de46f618a1964f9bc1034d138 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sat, 3 Dec 2005 17:42:11 +0000 Subject: [PATCH] Make ZLIB without ZLIB_SHARED compiled again. --- crypto/comp/c_zlib.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crypto/comp/c_zlib.c b/crypto/comp/c_zlib.c index e077aa5b91..1cd1a296af 100644 --- a/crypto/comp/c_zlib.c +++ b/crypto/comp/c_zlib.c @@ -406,8 +406,10 @@ COMP_METHOD *COMP_zlib(void) } #endif -#if defined(ZLIB) || defined(ZLIB_SHARED) +#ifdef ZLIB_SHARED if (zlib_loaded) +#endif +#if defined(ZLIB) || defined(ZLIB_SHARED) meth = &zlib_stateful_method; #endif -- 2.34.1