]> granicus.if.org Git - apache/commitdiff
Add remark about backport obstacle.
authorRainer Jung <rjung@apache.org>
Sun, 14 Feb 2016 16:36:04 +0000 (16:36 +0000)
committerRainer Jung <rjung@apache.org>
Sun, 14 Feb 2016 16:36:04 +0000 (16:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1730351 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_init.c

index 8fa4b92432fb36100d2a7b2e16288705d8efa46a..5690fd7eff886ec3b4e9dd80784687a86e3cc370 100644 (file)
@@ -489,6 +489,10 @@ static void ssl_set_ctx_protocol_option(server_rec *s,
         SSL_CTX_set_options(ctx, option);
     }
     else if (SSL_CTX_get_options(ctx) & option) {
+        /*
+         * Do not backport to 2.4: SSL_CTX_clear_options()
+         * was only introduced in OpenSSL 0.9.8m.
+         */
         SSL_CTX_clear_options(ctx, option);
         ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO(02904)
                      "Allowing SSLProtocol %s even though it is disabled "