From: Daniel Stenberg Date: Fri, 13 Nov 2015 14:55:52 +0000 (+0100) Subject: openssl: remove #if check for 0.9.7 for ENGINE_load_private_key X-Git-Tag: curl-7_46_0~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6c20a8710536609ea86359247e46d053d973724c;p=thirdparty%2Fcurl.git openssl: remove #if check for 0.9.7 for ENGINE_load_private_key --- diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 6b0077ca95..1cf29764a0 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -83,7 +83,7 @@ #error "OPENSSL_VERSION_NUMBER not defined" #endif -#if OPENSSL_VERSION_NUMBER >= 0x00907001L && !defined(OPENSSL_IS_BORINGSSL) +#if !defined(OPENSSL_IS_BORINGSSL) /* ENGINE_load_private_key() takes four arguments */ #define HAVE_ENGINE_LOAD_FOUR_ARGS #include