]> granicus.if.org Git - apache/commitdiff
* modules/ssl/ssl_engine_kernel.c (ssl_hook_Access): Dump the SSL
authorJoe Orton <jorton@apache.org>
Fri, 26 Feb 2010 16:05:11 +0000 (16:05 +0000)
committerJoe Orton <jorton@apache.org>
Fri, 26 Feb 2010 16:05:11 +0000 (16:05 +0000)
  error stack if reneg fails; this will give a big hint for failures
  due to secure reneg.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@916733 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_kernel.c

index 9cee188ebc8d007d55d3ce5d30b82f15a4848645..a5e3c629431b99c0235b3dec390cb1355fc752dc 100644 (file)
@@ -790,6 +790,7 @@ int ssl_hook_Access(request_rec *r)
             if (SSL_get_state(ssl) != SSL_ST_OK) {
                 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
                               "Re-negotiation request failed");
+                ssl_log_ssl_error(APLOG_MARK, APLOG_ERR, r->server);
 
                 r->connection->keepalive = AP_CONN_CLOSE;
                 return HTTP_FORBIDDEN;