diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2015-11-13 15:55:52 +0100 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2015-11-13 15:55:52 +0100 | 
| commit | 6c20a8710536609ea86359247e46d053d973724c (patch) | |
| tree | 90a75b1921f92dbf24d4e2bd3d08a258ce035642 /lib/vtls | |
| parent | b430d94fb232951dceda2cd492df6a8db75bc266 (diff) | |
openssl: remove #if check for 0.9.7 for ENGINE_load_private_key
Diffstat (limited to 'lib/vtls')
| -rw-r--r-- | lib/vtls/openssl.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 6b0077ca9..1cf29764a 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 <openssl/ui.h>  | 
