From 47c450100013a741d13dbacbb843cae42be9c752 Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Tue, 12 Mar 2002 22:07:12 +0000 Subject: [PATCH] we require OpenSSL 0.9.6+ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93877 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/mod_ssl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ssl/mod_ssl.h b/modules/ssl/mod_ssl.h index b5dbabb004..cbeb68e461 100644 --- a/modules/ssl/mod_ssl.h +++ b/modules/ssl/mod_ssl.h @@ -259,8 +259,8 @@ ap_set_module_config(c->conn_config, &ssl_module, val) /* * Check for OpenSSL version */ -#if SSL_LIBRARY_VERSION < 0x00903100 -#error "mod_ssl requires OpenSSL 0.9.3 or higher" +#if SSL_LIBRARY_VERSION < 0x00906000 +#error "mod_ssl requires OpenSSL 0.9.6 or higher" #endif /* -- 2.50.1