From 25cb3bad8414ce44d2d543bf33ff68953ecd6ebf Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Sun, 5 Oct 2014 11:41:52 +0000 Subject: [PATCH] Follow up to r1629372: ensure compatibily with OpenSSL < 1.0 (sk_OPENSSL_STRING_value). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1629485 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_util_stapling.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/ssl/ssl_util_stapling.c b/modules/ssl/ssl_util_stapling.c index 81e95b41ca..933d17799c 100644 --- a/modules/ssl/ssl_util_stapling.c +++ b/modules/ssl/ssl_util_stapling.c @@ -32,6 +32,11 @@ #include "ap_mpm.h" #include "apr_thread_mutex.h" +#ifndef sk_OPENSSL_STRING_value +/* backward compatibility with OpenSSL < 1.0 */ +#define sk_OPENSSL_STRING_value sk_value +#endif + #ifdef HAVE_OCSP_STAPLING /** -- 2.50.1