From 84d078e64cf7dd357ef3ceebcd3d252eefe7cf21 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Fri, 17 Feb 2017 17:39:59 +0000 Subject: [PATCH] =?utf8?q?Thanks=20to=20R=C3=BCdiger,=20Yann=20and=20Jacob?= =?utf8?q?=20for=20catches=20and=20verification?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1783438 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_engine_init.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ssl/ssl_engine_init.c b/modules/ssl/ssl_engine_init.c index d6248c5b06..1cdc8981b1 100644 --- a/modules/ssl/ssl_engine_init.c +++ b/modules/ssl/ssl_engine_init.c @@ -1322,7 +1322,7 @@ static apr_status_t ssl_init_server_certs(server_rec *s, /* * ...otherwise, enable auto curve selection (OpenSSL 1.0.2) * or configure NIST P-256 (required to enable ECDHE for earlier versions) - * ECDH is always enabled in 1.0.2 unless excluded from SSLCipherList + * ECDH is always enabled in 1.1.0 unless excluded from SSLCipherList */ #if (OPENSSL_VERSION_NUMBER < 0x10100000L) else { @@ -1334,6 +1334,7 @@ static apr_status_t ssl_init_server_certs(server_rec *s, #endif } #endif + /* OpenSSL assures us that _free() is NULL-safe */ EC_KEY_free(eckey); EC_GROUP_free(ecparams); #endif -- 2.50.1