]> granicus.if.org Git - apache/commitdiff
mod_proxy: add missing APLOGNOs.
authorYann Ylavic <ylavic@apache.org>
Thu, 21 Aug 2014 15:49:54 +0000 (15:49 +0000)
committerYann Ylavic <ylavic@apache.org>
Thu, 21 Aug 2014 15:49:54 +0000 (15:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1619455 13f79535-47bb-0310-9956-ffa450edef68

docs/log-message-tags/next-number
modules/proxy/proxy_util.c

index f06c1c5aa947159c881fa1b4249e3dc8573f9414..0b17f236568da38536a8831adeeee3b120e5ed8c 100644 (file)
@@ -1 +1 @@
-2806
+2808
index 8861b2b3c1887ccc9c1c2b51466a43ecd6a37aa8..726e56ad21fb4de165bae29ee90f9d5690922bcb 100644 (file)
@@ -3250,7 +3250,7 @@ static int ap_proxy_clear_connection(request_rec *r, apr_table_t *headers)
     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(request_rec *r, apr_table_t *headers)
         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")) {