From: William A. Rowe Jr Date: Sat, 5 Apr 2003 19:32:01 +0000 (+0000) Subject: Have some consistency! Fixes logic I introduced in 1.37. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f603805df04a148974fb6798b731acfb1bad4eb;p=thirdparty%2Fapache%2Fhttpd.git Have some consistency! Fixes logic I introduced in 1.37. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@99253 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_util.c b/ssl_util.c index e1dbb2db462..b8736f92097 100644 --- a/ssl_util.c +++ b/ssl_util.c @@ -402,7 +402,7 @@ const char *ssl_asn1_table_keyfmt(apr_pool_t *p, static apr_thread_mutex_t **lock_cs; static int lock_num_locks; -#ifdef SSLC_VERSION_NUMBER +#ifdef HAVE_SSLC #if SSLC_VERSION_NUMBER >= 0x2000 static int ssl_util_thr_lock(int mode, int type, const char *file, int line) @@ -423,7 +423,7 @@ static void ssl_util_thr_lock(int mode, int type, apr_thread_mutex_unlock(lock_cs[type]); } #ifdef HAVE_SSLC -#if SSLC_VERSION_NUMBER > 0x2000 +#if SSLC_VERSION_NUMBER >= 0x2000 return 1; } else {