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
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);