You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bo...@apache.org on 2007/05/22 04:55:58 UTC

svn commit: r540405 - /apr/apr/branches/0.9.x/tables/apr_tables.c

Author: bojan
Date: Mon May 21 19:55:57 2007
New Revision: 540405

URL: http://svn.apache.org/viewvc?view=rev&rev=540405
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/0.9.x/tables/apr_tables.c

Modified: apr/apr/branches/0.9.x/tables/apr_tables.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/0.9.x/tables/apr_tables.c?view=diff&rev=540405&r1=540404&r2=540405
==============================================================================
--- apr/apr/branches/0.9.x/tables/apr_tables.c (original)
+++ apr/apr/branches/0.9.x/tables/apr_tables.c Mon May 21 19:55:57 2007
@@ -712,7 +712,7 @@
 	    abort();
 	}
 	if (!apr_pool_is_ancestor(apr_pool_find(val), t->a.pool)) {
-	    fprintf(stderr, "table_set: key not in ancestor pool of t\n");
+	    fprintf(stderr, "table_set: val not in ancestor pool of t\n");
 	    abort();
 	}
     }
@@ -781,7 +781,7 @@
 	    abort();
 	}
 	if (!apr_pool_is_ancestor(apr_pool_find(val), t->a.pool)) {
-	    fprintf(stderr, "table_set: key not in ancestor pool of t\n");
+	    fprintf(stderr, "table_set: val not in ancestor pool of t\n");
 	    abort();
 	}
     }