diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-01-14 16:38:14 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-01-14 16:38:14 +0100 |
commit | fdcc4d6daa0a28c530577a0e83066b110e390428 (patch) | |
tree | 3af5d5d75459b5007a245627ba44d9ed6d555f97 /lib/vtls | |
parent | 133cd192443c41ef2cecb430740751fe6479a00b (diff) |
openssl: for 1.1.0+ they now provide a SSLeay() macro of their own
Diffstat (limited to 'lib/vtls')
-rw-r--r-- | lib/vtls/openssl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 8365465b6..204d6574b 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -122,7 +122,6 @@ #if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && /* OpenSSL 1.1.0+ */ \ !defined(LIBRESSL_VERSION_NUMBER) #define SSLeay_add_ssl_algorithms() SSL_library_init() -#define SSLeay() OpenSSL_version_num() #define SSLEAY_VERSION_NUMBER OPENSSL_VERSION_NUMBER #define HAVE_X509_GET0_EXTENSIONS 1 /* added in 1.1.0 -pre1 */ #endif |