From: Stefan Eissing Date: Tue, 17 Jul 2018 09:36:23 +0000 (+0000) Subject: * using the, hopefully correct, ever elusive libressl version numbering check for... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=005089f8d330debcaa9d50d2233d87059801aef8;p=apache * using the, hopefully correct, ever elusive libressl version numbering check for the new openssl API calls, fixes PR 62548. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1836095 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/md/md_crypt.c b/modules/md/md_crypt.c index ae541bfed9..e0aac3ec99 100644 --- a/modules/md/md_crypt.c +++ b/modules/md/md_crypt.c @@ -52,7 +52,7 @@ #if defined(LIBRESSL_VERSION_NUMBER) /* Missing from LibreSSL */ -#define MD_USE_OPENSSL_PRE_1_1_API (LIBRESSL_VERSION_NUMBER < 0x2080000f) +#define MD_USE_OPENSSL_PRE_1_1_API (LIBRESSL_VERSION_NUMBER < 0x2070000f) #else /* defined(LIBRESSL_VERSION_NUMBER) */ #define MD_USE_OPENSSL_PRE_1_1_API (OPENSSL_VERSION_NUMBER < 0x10100000L) #endif