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 2014/08/21 17:49:54 UTC

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

Author: ylavic
Date: Thu Aug 21 15:49:54 2014
New Revision: 1619455

URL: http://svn.apache.org/r1619455
Log:
mod_proxy: add missing APLOGNOs.

Modified:
    httpd/httpd/trunk/docs/log-message-tags/next-number
    httpd/httpd/trunk/modules/proxy/proxy_util.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=1619455&r1=1619454&r2=1619455&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/log-message-tags/next-number (original)
+++ httpd/httpd/trunk/docs/log-message-tags/next-number Thu Aug 21 15:49:54 2014
@@ -1 +1 @@
-2806
+2808

Modified: httpd/httpd/trunk/modules/proxy/proxy_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/proxy_util.c?rev=1619455&r1=1619454&r2=1619455&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/proxy_util.c (original)
+++ httpd/httpd/trunk/modules/proxy/proxy_util.c Thu Aug 21 15:49:54 2014
@@ -3250,7 +3250,7 @@ static int ap_proxy_clear_connection(req
     apr_table_unset(headers, "Connection");
 
     if (x.error) {
-        ap_log_rerror(APLOG_MARK, APLOG_NOTICE, 0, r, APLOGNO()
+        ap_log_rerror(APLOG_MARK, APLOG_NOTICE, 0, r, APLOGNO(02806)
                 "Error parsing Connection header: %s", x.error);
         return -1;
     }
@@ -3259,7 +3259,7 @@ static int ap_proxy_clear_connection(req
         int i;
         for (i = 0; i < x.array->nelts; i++) {
             const char *name = APR_ARRAY_IDX(x.array, i, const char *);
-            ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO()
+            ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(02807)
                           "Removing header '%s' listed in Connection header",
                           name);
             if (!strcasecmp(name, "close")) {