]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Clean up some crumbs... The sandwich is next.
authorSander Striker <striker@apache.org>
Thu, 3 Feb 2005 22:05:06 +0000 (22:05 +0000)
committerSander Striker <striker@apache.org>
Thu, 3 Feb 2005 22:05:06 +0000 (22:05 +0000)
* 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

modules/proxy/mod_proxy.c

index 4e48aac84da9f748e94c342d01368a19c74e68fc..7a3e5814862ead73d85dd98ced97f824866a3805 100644 (file)
@@ -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 == '/') {