Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 43791 invoked from network); 22 May 2007 02:50:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 May 2007 02:50:47 -0000 Received: (qmail 34404 invoked by uid 500); 22 May 2007 02:50:52 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 34365 invoked by uid 500); 22 May 2007 02:50:52 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 34353 invoked by uid 99); 22 May 2007 02:50:52 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 May 2007 19:50:52 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 May 2007 19:50:46 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 481DE1A981A; Mon, 21 May 2007 19:50:26 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r540404 - /apr/apr/branches/1.2.x/tables/apr_tables.c Date: Tue, 22 May 2007 02:50:26 -0000 To: commits@apr.apache.org From: bojan@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070522025026.481DE1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bojan Date: Mon May 21 19:50:25 2007 New Revision: 540404 URL: http://svn.apache.org/viewvc?view=rev&rev=540404 Log: Backport r540402 from the trunk. Fix debugging messages in apr_table_addn()/apr_table_mergen(). Patch by Dr. Peter Poeml. Modified: apr/apr/branches/1.2.x/tables/apr_tables.c Modified: apr/apr/branches/1.2.x/tables/apr_tables.c URL: http://svn.apache.org/viewvc/apr/apr/branches/1.2.x/tables/apr_tables.c?view=diff&rev=540404&r1=540403&r2=540404 ============================================================================== --- apr/apr/branches/1.2.x/tables/apr_tables.c (original) +++ apr/apr/branches/1.2.x/tables/apr_tables.c Mon May 21 19:50:25 2007 @@ -714,7 +714,7 @@ abort(); } if (!apr_pool_is_ancestor(apr_pool_find(val), t->a.pool)) { - fprintf(stderr, "apr_table_mergen: key not in ancestor pool of t\n"); + fprintf(stderr, "apr_table_mergen: val not in ancestor pool of t\n"); abort(); } } @@ -783,7 +783,7 @@ abort(); } if (!apr_pool_is_ancestor(apr_pool_find(val), t->a.pool)) { - fprintf(stderr, "apr_table_addn: key not in ancestor pool of t\n"); + fprintf(stderr, "apr_table_addn: val not in ancestor pool of t\n"); abort(); } }