From: Joe Orton Date: Tue, 4 Dec 2007 17:06:20 +0000 (+0000) Subject: * modules/ssl/ssl_engine_kernel.c (upgrade_connection): Calling X-Git-Tag: 2.3.0~1175 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc1ddbbc85331e9cd671c61d52d1db9bdbbd0395;p=thirdparty%2Fapache%2Fhttpd.git * modules/ssl/ssl_engine_kernel.c (upgrade_connection): Calling SSL_renegotiate makes no sense here; remove copied comment. No functional change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@601003 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_kernel.c b/modules/ssl/ssl_engine_kernel.c index cc929fc4fd1..9b855223383 100644 --- a/modules/ssl/ssl_engine_kernel.c +++ b/modules/ssl/ssl_engine_kernel.c @@ -70,10 +70,7 @@ static apr_status_t upgrade_connection(request_rec *r) sslconn = myConnConfig(conn); ssl = sslconn->ssl; - /* XXX: Should replace SSL_set_state with SSL_renegotiate(ssl); - * However, this causes failures in perl-framework currently, - * perhaps pre-test if we have already negotiated? - */ + /* Perform initial SSL handshake. */ SSL_set_accept_state(ssl); SSL_do_handshake(ssl);