From: Yann Ylavic Date: Thu, 21 Aug 2014 15:49:54 +0000 (+0000) Subject: mod_proxy: add missing APLOGNOs. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=604b4040b51995ee8e056db22cfb4202a799155d;p=thirdparty%2Fapache%2Fhttpd.git mod_proxy: add missing APLOGNOs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1619455 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number index f06c1c5aa94..0b17f236568 100644 --- a/docs/log-message-tags/next-number +++ b/docs/log-message-tags/next-number @@ -1 +1 @@ -2806 +2808 diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 8861b2b3c18..726e56ad21f 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -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")) {