From b000cda5101859dbb12aabc435c0fcd6520dee5c Mon Sep 17 00:00:00 2001
From: Stefan Eissing <icing@apache.org>
Date: Tue, 17 Jul 2018 09:39:38 +0000
Subject: [PATCH] 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
---
 modules/md/md_crypt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
-- 
2.40.0