From: Paul J. Reder Date: Mon, 14 Jul 2003 19:30:14 +0000 (+0000) Subject: Remove some extraneous code committed as part of the fix for 13946 pointed X-Git-Tag: pre_ajp_proxy~1422 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cbf0523733b1aeab03dbb81ed5748d82cf6fe987;p=apache Remove some extraneous code committed as part of the fix for 13946 pointed out by Andre Malo. [Paul J. Reder] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100615 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 0fca3dbe07..e93d714460 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,10 @@ Changes with Apache 2.1.0-dev [Remove entries to the current 2.0 section below, when backported] + *) Remove an extra bit of unnecessary code from the recently + committed fix for PR 13946 (in mod_rewrite). Reported by + Andre Malo. [Paul J. Reder] + *) mod_ssl: Fix a problem setting variables that represent the client certificate chain. PR 21397 [Jeff Trawick] diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index d714bc4cec..32066f4c36 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -2834,13 +2834,6 @@ static unsigned is_absolute_uri(char *uri) return 7; } break; - - case 'p': - case 'P': - if (!strncasecmp(uri, "roxy:", 5)) { /* proxy: */ - return 6; - } - break; } return 0;