]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
PR#39420, make matching on resp=Content-Type case-insensitive.
authorNick Kew <niq@apache.org>
Fri, 15 Dec 2006 21:33:07 +0000 (21:33 +0000)
committerNick Kew <niq@apache.org>
Fri, 15 Dec 2006 21:33:07 +0000 (21:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@487676 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/filters/mod_filter.c

diff --git a/STATUS b/STATUS
index fe624a6b536fe6bc7ef830ba9ad422b20bc001bb..9ccb6d785e5109709e4ebe6efb4811994159c5b2 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -78,10 +78,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  * mod_filter: PR#39420, make matching on resp=Content-Type case-insensitive.
-    http://svn.apache.org/viewvc?view=rev&revision=486455
-    +1: niq, trawick, rpluem
-
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
 
     * mpm_winnt: Fix return values from wait_for_many_objects.
index e0a896676089476051b75058680c764ded6425f4..ae167178ce1feb2fd5d82d859c331cbe5e1cf3c6 100644 (file)
@@ -638,7 +638,7 @@ static const char *filter_provider(cmd_parms *cmd, void *CFG, const char *args)
     }
 
     if (   (provider->dispatch == RESPONSE_HEADERS)
-        && !strcmp(str, "content-type")) {
+        && !strcasecmp(str, "content-type")) {
         provider->dispatch = CONTENT_TYPE;
     }
     provider->value = str;