]> granicus.if.org Git - apache/commitdiff
gen_test_char: add double-quote to the list of T_HTTP_TOKEN_STOP.
authorRoy T. Fielding <fielding@apache.org>
Tue, 13 May 2008 02:51:06 +0000 (02:51 +0000)
committerRoy T. Fielding <fielding@apache.org>
Tue, 13 May 2008 02:51:06 +0000 (02:51 +0000)
PR: 9727
Submitted by: Ville Skytt <ville.skytta iki.fi>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@655714 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/gen_test_char.c

diff --git a/CHANGES b/CHANGES
index faf4cedf96a25041344910fae0d744a9d2506338..4ad56af7b94a2ef4aa84cea68817aa6a6cb005ca 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@
 Changes with Apache 2.3.0
 [ When backported to 2.2.x, remove entry from this file ]
 
+  *) gen_test_char: add double-quote to the list of T_HTTP_TOKEN_STOP.
+     PR 9727 [Ville Skytt <ville.skytta iki.fi>]
+
   *) suexec: When group is given as a numeric gid, validate it by looking up
      the actual group name such that the name can be used in log entries.
      PR 7862 [<y-koga apache.or.jp>, Leif W <warp-9.9 usa.net>]
index 587583aed60953865dd1fa8121f143578f0b71c8..59947d5888c3a21e579a0b7df299da4d6bb28ed5 100644 (file)
@@ -90,8 +90,8 @@ int main(int argc, char *argv[])
             flags |= T_OS_ESCAPE_PATH;
         }
 
-        /* these are the "tspecials" from RFC2068 */
-        if (c && (apr_iscntrl(c) || strchr(" \t()<>@,;:\\/[]?={}", c))) {
+        /* these are the "tspecials" (RFC2068) or "separators" (RFC2616) */
+        if (c && (apr_iscntrl(c) || strchr(" \t()<>@,;:\\\"/[]?={}", c))) {
             flags |= T_HTTP_TOKEN_STOP;
         }