You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2007/12/04 18:06:21 UTC

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

Author: jorton
Date: Tue Dec  4 09:06:20 2007
New Revision: 601003

URL: http://svn.apache.org/viewvc?rev=601003&view=rev
Log:
* modules/ssl/ssl_engine_kernel.c (upgrade_connection): Calling
  SSL_renegotiate makes no sense here; remove copied comment.  No
  functional change.

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=601003&r1=601002&r2=601003&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c Tue Dec  4 09:06:20 2007
@@ -70,10 +70,7 @@
     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);