]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_cache: Accept HT (Horizontal Tab) when parsing cache related header
authorGraham Leggett <minfrin@apache.org>
Tue, 3 Nov 2015 13:27:54 +0000 (13:27 +0000)
committerGraham Leggett <minfrin@apache.org>
Tue, 3 Nov 2015 13:27:54 +0000 (13:27 +0000)
           fields as described in RFC7230. See OWS definition.
Submitted by: jailletc36
Reviewed by: ylavic, minfrin

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1712293 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
modules/cache/cache_util.h

diff --git a/CHANGES b/CHANGES
index 195bf88bd0dda0019e20fc292d6d2c59ae0783b8..89bbef28dff14825766219701756aaf80bc564e8 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@
 
 Changes with Apache 2.4.18
 
+  *) mod_cache: Accept HT (Horizontal Tab) when parsing cache related header
+     fields as described in RFC7230. [Christophe Jaillet]
+
   *) core/util_script: making REDIRECT_URL a full URL is now opt-in
      via new 'QualifyRedirectURL' directive.
 
diff --git a/STATUS b/STATUS
index c8361f340b3b8fa1d9b5faa9d52e69e94179f3ae..43f70b958ae27f61c1af305b0593d29f4b5c8481 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -118,16 +118,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
      2.4.x patch: trunk works (modulo CHANGES)
      +1: ylavic, jim, minfrin
 
-   * mod_cache: Accept HT (Horizontal Tab) when parsing cache related header
-                fields as described in RFC7230. See OWS definition.
-                [Christophe Jaillet, Graham Leggett]
-     trunk patch: http://svn.apache.org/r1710723
-     2.4.x trunk works (modulo CHANGES)
-     +1: jailletc36, ylavic, minfrin
-     jailletc36: CHANGES entry could be tweaked to speak about OWS as per RFC7230
-                 instead of RFC2616
-     ylavic: simple s/RFC2616/RFC7230/ in CHANGES entry would be fine IMO.
-
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
index 59436c428d4533bc088d8b35258c669bbc3c54e4..397efb90db7be3dedae6b2e877e802908783cbf0 100644 (file)
@@ -99,7 +99,7 @@ extern "C" {
 #define CACHE_LOCKNAME_KEY "mod_cache-lockname"
 #define CACHE_LOCKFILE_KEY "mod_cache-lockfile"
 #define CACHE_CTX_KEY "mod_cache-ctx"
-#define CACHE_SEPARATOR ",   "
+#define CACHE_SEPARATOR ", \t"
 
 /**
  * cache_util.c