diff options
author | Sander Striker <striker@apache.org> | 2005-02-03 23:05:06 +0100 |
---|---|---|
committer | Sander Striker <striker@apache.org> | 2005-02-03 23:05:06 +0100 |
commit | 4162b98a0f5697c0f7b9c957f203ab90a37070d6 (patch) | |
tree | 4b42b0fb5b54412cbc0dbbc2438152fbd5aa5fb3 | |
parent | Rename proxy modules. (diff) | |
download | apache2-4162b98a0f5697c0f7b9c957f203ab90a37070d6.tar.xz apache2-4162b98a0f5697c0f7b9c957f203ab90a37070d6.zip |
Clean up some crumbs... The sandwich is next.
* modules\proxy\mod_proxy.c
(alias_match): Removed unused variables.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@151241 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/proxy/mod_proxy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 4e48aac84d..7a3e581486 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -249,7 +249,6 @@ static int alias_match(const char *uri, const char *alias_fakename) const char *end_fakename = alias_fakename + strlen(alias_fakename); const char *aliasp = alias_fakename, *urip = uri; const char *end_uri = uri + strlen(uri); - unsigned char uric, aliasc; while (aliasp < end_fakename && urip < end_uri) { if (*aliasp == '/') { |