Commit 863a5055 authored by Nick Kew's avatar Nick Kew
Browse files

PR#39420, make matching on resp=Content-Type case-insensitive.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@487676 13f79535-47bb-0310-9956-ffa450edef68
parent 263596b7
Loading
Loading
Loading
Loading
+0 −4
Changes for STATUS: 0 added lines, 4 removed lines.
Original line number Diff line number Diff line
@@ -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.
+1 −1
Changes for modules/filters/mod_filter.c: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -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;