You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2021/03/02 14:52:56 UTC

svn commit: r1887087 - in /httpd/httpd/trunk: docs/log-message-tags/next-number modules/ssl/ssl_engine_kernel.c

Author: icing
Date: Tue Mar  2 14:52:56 2021
New Revision: 1887087

URL: http://svn.apache.org/viewvc?rev=1887087&view=rev
Log:
Adding log tags where log tags are needed.


Modified:
    httpd/httpd/trunk/docs/log-message-tags/next-number
    httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c

Modified: httpd/httpd/trunk/docs/log-message-tags/next-number
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/log-message-tags/next-number?rev=1887087&r1=1887086&r2=1887087&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/log-message-tags/next-number (original)
+++ httpd/httpd/trunk/docs/log-message-tags/next-number Tue Mar  2 14:52:56 2021
@@ -1 +1 @@
-10264
+10266

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=1887087&r1=1887086&r2=1887087&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c Tue Mar  2 14:52:56 2021
@@ -2324,14 +2324,14 @@ static apr_status_t set_challenge_creds(
     sslcon->service_unavailable = 1;
     if (cert_file) {
         if (SSL_use_certificate_chain_file(ssl, cert_file) < 1) {
-            ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO()
+            ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO(10264)
                           "Failed to configure challenge certificate %s",
                           servername);
             return APR_EGENERAL;
         }
         if (key_file == NULL) key_file = cert_file;
         if (SSL_use_PrivateKey_file(ssl, key_file, SSL_FILETYPE_PEM) < 1) {
-            ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO()
+            ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO(10265)
                           "Failed to configure challenge private key %s",
                           servername);
             return APR_EGENERAL;