]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/ssl/ssl_engine_kernel.c (upgrade_connection): Calling
authorJoe Orton <jorton@apache.org>
Tue, 4 Dec 2007 17:06:20 +0000 (17:06 +0000)
committerJoe Orton <jorton@apache.org>
Tue, 4 Dec 2007 17:06:20 +0000 (17:06 +0000)
  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

modules/ssl/ssl_engine_kernel.c

index cc929fc4fd1c0f2e8a8644897f36a32ae868aafe..9b8552233835e4429e45b615ed667503374e41ea 100644 (file)
@@ -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);