From e9d5e131fed665f6cfc6a74b4cc87b97067b94a7 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Sun, 4 Sep 2011 19:36:16 +0000 Subject: [PATCH] PR 51434 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1165099 13f79535-47bb-0310-9956-ffa450edef68 --- STATUS | 6 ------ modules/filters/mod_filter.c | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/STATUS b/STATUS index 49b2a69682d..1e6c232003b 100644 --- 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. diff --git a/modules/filters/mod_filter.c b/modules/filters/mod_filter.c index cbabd48060d..8e706229352 100644 --- a/modules/filters/mod_filter.c +++ b/modules/filters/mod_filter.c @@ -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"; } -- 2.47.2