]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
PR 51434
authorJim Jagielski <jim@apache.org>
Sun, 4 Sep 2011 19:36:16 +0000 (19:36 +0000)
committerJim Jagielski <jim@apache.org>
Sun, 4 Sep 2011 19:36:16 +0000 (19:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1165099 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/filters/mod_filter.c

diff --git a/STATUS b/STATUS
index 49b2a69682d333dabc41570181603220febdbb5d..1e6c232003b485fa68f2476c3768738b56e0dc22 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -93,12 +93,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  * mod_filter: fix parsing of regexps containing slashes
-    PR 51434 (and 51435, which includes the fix)
-    Trunk patch: N/A
-    2.2.x patch: https://issues.apache.org/bugzilla/attachment.cgi?id=27229
-    +1: niq, sf, trawick
-
   * Adjust inflated log severity.
     PR: 44020
     Trunk patch: Was never in trunk.
index cbabd48060d20c1db5cb8428af07948224aa0bdc..8e7062293524f541b88f05a7e6915b180a26f0cd 100644 (file)
@@ -581,7 +581,7 @@ static const char *filter_provider(cmd_parms *cmd, void *CFG, const char *args)
         break;
     case '/':
         provider->match_type = REGEX_MATCH;
-        rxend = ap_strchr_c(match, '/');
+        rxend = ap_strrchr_c(match, '/');
         if (!rxend) {
               return "Bad regexp syntax";
         }