You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2022/08/17 13:28:26 UTC

svn commit: r1903492 - /httpd/apreq/trunk/library/t/params.c

Author: jorton
Date: Wed Aug 17 13:28:26 2022
New Revision: 1903492

URL: http://svn.apache.org/viewvc?rev=1903492&view=rev
Log:
Revert r1903490 since it makes the test fail even if the tests
are individually successful (test number ordering fails).

Modified:
    httpd/apreq/trunk/library/t/params.c

Modified: httpd/apreq/trunk/library/t/params.c
URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/library/t/params.c?rev=1903492&r1=1903491&r2=1903492&view=diff
==============================================================================
--- httpd/apreq/trunk/library/t/params.c (original)
+++ httpd/apreq/trunk/library/t/params.c Wed Aug 17 13:28:26 2022
@@ -104,8 +104,6 @@ static void header_attributes(dAT, void
     apr_size_t vlen;
     apr_status_t s;
 
-    AT_localize();
-
     s = apreq_header_attribute(hdr, "none", 4, &val, &vlen);
     AT_int_eq(s, APREQ_ERROR_NOATTR);
 
@@ -134,8 +132,6 @@ static void header_attributes(dAT, void
 
     s = apreq_header_attribute(hdr, "no-quote", 8, &val, &vlen);
     AT_int_eq(s, APREQ_ERROR_BADSEQ);
-
-    AT_delocalize();
 }