You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2013/05/19 21:32:59 UTC

svn commit: r1484343 - in /httpd/httpd/trunk: docs/log-message-tags/next-number modules/proxy/mod_proxy.c

Author: jim
Date: Sun May 19 19:32:59 2013
New Revision: 1484343

URL: http://svn.apache.org/r1484343
Log:
Add in logno's

Modified:
    httpd/httpd/trunk/docs/log-message-tags/next-number
    httpd/httpd/trunk/modules/proxy/mod_proxy.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=1484343&r1=1484342&r2=1484343&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/log-message-tags/next-number (original)
+++ httpd/httpd/trunk/docs/log-message-tags/next-number Sun May 19 19:32:59 2013
@@ -1 +1 @@
-2478
+2481

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy.c?rev=1484343&r1=1484342&r2=1484343&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy.c Sun May 19 19:32:59 2013
@@ -2408,7 +2408,7 @@ static int proxy_post_config(apr_pool_t 
     apr_status_t rv = ap_global_mutex_create(&proxy_mutex, NULL,
             proxy_id, NULL, s, pconf, 0);
     if (rv != APR_SUCCESS) {
-        ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, APLOGNO()
+        ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, APLOGNO(02478)
         "failed to create %s mutex", proxy_id);
         return rv;
     }
@@ -2518,7 +2518,7 @@ static void child_init(apr_pool_t *p, se
                                       apr_global_mutex_lockfile(proxy_mutex),
                                       p);
     if (rv != APR_SUCCESS) {
-        ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO()
+        ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO(02479)
                      "could not init proxy_mutex in child");
         exit(1); /* Ugly, but what else? */
     }
@@ -2588,7 +2588,7 @@ static int proxy_pre_config(apr_pool_t *
     apr_status_t rv = ap_mutex_register(pconf, proxy_id, NULL,
             APR_LOCK_DEFAULT, 0);
     if (rv != APR_SUCCESS) {
-        ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, APLOGNO()
+        ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, APLOGNO(02480)
                 "failed to register %s mutex", proxy_id);
         return 500; /* An HTTP status would be a misnomer! */
     }