Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8A46F117D5 for ; Thu, 21 Aug 2014 15:50:16 +0000 (UTC) Received: (qmail 61672 invoked by uid 500); 21 Aug 2014 15:50:16 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 61604 invoked by uid 500); 21 Aug 2014 15:50:16 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 61588 invoked by uid 99); 21 Aug 2014 15:50:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Aug 2014 15:50:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Aug 2014 15:50:15 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D63D4238890D; Thu, 21 Aug 2014 15:49:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1619455 - in /httpd/httpd/trunk: docs/log-message-tags/next-number modules/proxy/proxy_util.c Date: Thu, 21 Aug 2014 15:49:54 -0000 To: cvs@httpd.apache.org From: ylavic@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140821154954.D63D4238890D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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")) {