From: Rainer Jung Date: Sun, 14 Feb 2016 11:16:18 +0000 (+0000) Subject: Support for OpenSSL 1.1.0: X-Git-Tag: 2.5.0-alpha~2076 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=434a3b97174fe13fc09e230ce4ddfceb75e6d20c;p=thirdparty%2Fapache%2Fhttpd.git Support for OpenSSL 1.1.0: - Fix typo in loop end condition This code will be removed next. Thex fix is for the case we want to roll teh code back to this state. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1730314 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_kernel.c b/modules/ssl/ssl_engine_kernel.c index 749ec1b29dc..ddec52ac7c4 100644 --- a/modules/ssl/ssl_engine_kernel.c +++ b/modules/ssl/ssl_engine_kernel.c @@ -1042,7 +1042,7 @@ int ssl_hook_Access(request_rec *r) has_buffered_data(r); if (sslconn->ssl == NULL || sslconn->reneg_state == RENEG_DONE || - sslconn->reneg_state == RENEG_ALLOW) { + sslconn->reneg_state == RENEG_ALERT) { break; } apr_sleep(SSL_HANDSHAKE_POLL_MS);