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

svn commit: r1820036 - in /httpd/httpd/trunk: docs/log-message-tags/next-number modules/md/mod_md.c

Author: jailletc36
Date: Thu Jan  4 06:11:18 2018
New Revision: 1820036

URL: http://svn.apache.org/viewvc?rev=1820036&view=rev
Log:
Add missing APLOGNO.

10112 is wasted because it is in my tree only.

Modified:
    httpd/httpd/trunk/docs/log-message-tags/next-number
    httpd/httpd/trunk/modules/md/mod_md.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=1820036&r1=1820035&r2=1820036&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/log-message-tags/next-number (original)
+++ httpd/httpd/trunk/docs/log-message-tags/next-number Thu Jan  4 06:11:18 2018
@@ -1 +1 @@
-10111
+10117

Modified: httpd/httpd/trunk/modules/md/mod_md.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/md/mod_md.c?rev=1820036&r1=1820035&r2=1820036&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/md/mod_md.c (original)
+++ httpd/httpd/trunk/modules/md/mod_md.c Thu Jan  4 06:11:18 2018
@@ -1165,7 +1165,7 @@ static apr_status_t md_get_certificate(s
     *pkeyfile = NULL;
     *pcertfile = NULL;
 
-    ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO()
+    ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO(10113)
                  "md_get_certificate called for vhost %s.", s->server_hostname);
 
     sc = md_config_get(s);
@@ -1182,7 +1182,7 @@ static apr_status_t md_get_certificate(s
          * that server with SSL certs, has misspelled a server name or we have
          * a bug that prevented us from taking responsibility for this server.
          * Either way, make some polite noise */
-        ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, APLOGNO()  
+        ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, APLOGNO(10114)  
                      "asked for certificate of server %s which has no MD assigned. This "
                      "could be ok, but most likely it is either a misconfiguration or "
                      "a bug. Please check server names and MD names carefully and if "
@@ -1197,7 +1197,7 @@ static apr_status_t md_get_certificate(s
     
     md = md_reg_get(reg, sc->assigned->name, p);
     if (!md) {
-        ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO() 
+        ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO(10115) 
                      "unable to hand out certificates, as registry can no longer "
                      "find MD '%s'.", sc->assigned->name);
         return APR_ENOENT;
@@ -1226,7 +1226,7 @@ static apr_status_t md_get_certificate(s
             }
         }
         
-        ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO()  
+        ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO(10116)  
                      "%s: providing fallback certificate for server %s", 
                      md->name, s->server_hostname);
         return APR_EAGAIN;