You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2005/03/16 15:09:41 UTC

svn commit: r157756 - httpd/apreq/branches/multi-env-unstable/module/t/c-modules/apreq_cookie_test/mod_apreq_cookie_test.c

Author: joes
Date: Wed Mar 16 06:09:40 2005
New Revision: 157756

URL: http://svn.apache.org/viewcvs?view=rev&rev=157756
Log:
Sync cookie tests with taint->tainted changes in r157752.

Modified:
    httpd/apreq/branches/multi-env-unstable/module/t/c-modules/apreq_cookie_test/mod_apreq_cookie_test.c

Modified: httpd/apreq/branches/multi-env-unstable/module/t/c-modules/apreq_cookie_test/mod_apreq_cookie_test.c
URL: http://svn.apache.org/viewcvs/httpd/apreq/branches/multi-env-unstable/module/t/c-modules/apreq_cookie_test/mod_apreq_cookie_test.c?view=diff&r1=157755&r2=157756
==============================================================================
--- httpd/apreq/branches/multi-env-unstable/module/t/c-modules/apreq_cookie_test/mod_apreq_cookie_test.c (original)
+++ httpd/apreq/branches/multi-env-unstable/module/t/c-modules/apreq_cookie_test/mod_apreq_cookie_test.c Wed Mar 16 06:09:40 2005
@@ -72,11 +72,11 @@
     ap_set_content_type(r, "text/plain");
 
     if (strcmp(test, "bake") == 0) {
-        apreq_cookie_taint_off(cookie);
+        apreq_cookie_tainted_off(cookie);
         s = apreq_cookie_bake(cookie, req);
     }
     else if (strcmp(test, "bake2") == 0) {
-        apreq_cookie_taint_off(cookie);
+        apreq_cookie_tainted_off(cookie);
         s = apreq_cookie_bake2(cookie, req);
     }
     else {