From: Dr. Stephen Henson Date: Sat, 3 Dec 2005 17:47:20 +0000 (+0000) Subject: Fix from HEAD. X-Git-Tag: OpenSSL_0_9_8b~73 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ad4a89f070fdf028cd0f27c83ddaf39c6b44449a;p=oweals%2Fopenssl.git Fix from HEAD. --- 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