From: Stefan Eissing Date: Tue, 17 Jul 2018 09:39:38 +0000 (+0000) Subject: On the 2.4.x branch: X-Git-Tag: 2.4.35~141 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b000cda5101859dbb12aabc435c0fcd6520dee5c;p=apache On the 2.4.x branch: merge r1836095 from trunk: * 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/branches/2.4.x@1836096 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