You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2019/03/12 21:48:19 UTC

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

Author: ylavic
Date: Tue Mar 12 21:48:19 2019
New Revision: 1855349

URL: http://svn.apache.org/viewvc?rev=1855349&view=rev
Log:
mod_ssl: AH10129 from ERR to DEBUG level.

No error here, just debug information.

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=1855349&r1=1855348&r2=1855349&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c Tue Mar 12 21:48:19 2019
@@ -1144,7 +1144,8 @@ static int ssl_hook_Access_modern(reques
                 return HTTP_FORBIDDEN;
             }
 
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(10129) "verify client post handshake");
+            ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(10129)
+                          "verify client post handshake");
 
             SSL_set_verify(ssl, vmode_needed, ssl_callback_SSLVerify);