wininet: Fix misleading OpenSSL version number check.

This commit is contained in:
Andrew Nguyen 2010-10-25 00:09:48 -05:00 committed by Alexandre Julliard
parent ccc2f5abae
commit 7591563885
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ static CRITICAL_SECTION init_ssl_cs = { &init_ssl_cs_debug, -1, 0, 0, 0, 0 };
static void *OpenSSL_ssl_handle;
static void *OpenSSL_crypto_handle;
#if defined(OPENSSL_VERSION_NUMBER) && (OPENSSL_VERSION_NUMBER> 0x1000000)
#if defined(OPENSSL_VERSION_NUMBER) && (OPENSSL_VERSION_NUMBER > 0x10000000)
static const SSL_METHOD *meth;
#else
static SSL_METHOD *meth;