]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Cosmetics (unused variable in EBCDIC)
authorMartin Kraemer <martin@apache.org>
Fri, 12 Apr 2002 07:18:50 +0000 (07:18 +0000)
committerMartin Kraemer <martin@apache.org>
Fri, 12 Apr 2002 07:18:50 +0000 (07:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@94619 13f79535-47bb-0310-9956-ffa450edef68

src/modules/proxy/proxy_util.c

index 22e72e837a6cc89f1d029e1f896319bc72137bc9..dd95471c858ee94993ebce3bb3f9aac243517bf6 100644 (file)
@@ -73,9 +73,10 @@ static struct per_thread_data *get_per_thread_data(void);
 /* already called in the knowledge that the characters are hex digits */
 int ap_proxy_hex2c(const char *x)
 {
-    int i, ch;
-
+    int i;
 #ifndef CHARSET_EBCDIC
+    int ch;
+
     ch = x[0];
     if (ap_isdigit(ch))
         i = ch - '0';