]> granicus.if.org Git - apache/commitdiff
Support for OpenSSL 1.1.0:
authorRainer Jung <rjung@apache.org>
Sun, 14 Feb 2016 11:16:18 +0000 (11:16 +0000)
committerRainer Jung <rjung@apache.org>
Sun, 14 Feb 2016 11:16:18 +0000 (11:16 +0000)
- 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

modules/ssl/ssl_engine_kernel.c

index 749ec1b29dca9554bae37adc7abf41f8e94d0cc1..ddec52ac7c490a488734a693c7a002c4bc79ac71 100644 (file)
@@ -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);