You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2016/02/10 12:04:03 UTC

svn commit: r1729581 - /httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c

Author: icing
Date: Wed Feb 10 11:04:03 2016
New Revision: 1729581

URL: http://svn.apache.org/viewvc?rev=1729581&view=rev
Log:
tune from rocky horror picture show: Doing the handshake...again

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c?rev=1729581&r1=1729580&r2=1729581&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c Wed Feb 10 11:04:03 2016
@@ -1024,8 +1024,8 @@ int ssl_hook_Access(request_rec *r)
             SSL_set_state(ssl, SSL_ST_ACCEPT);
 #else
             ssl->state = SSL_ST_ACCEPT;
-            SSL_do_handshake(ssl);
 #endif
+            SSL_do_handshake(ssl);
 
 #else /* if OPENSSL_VERSION_NUMBER < 0x10100000L */