From: Martin Kraemer Date: Fri, 12 Apr 2002 07:18:50 +0000 (+0000) Subject: Cosmetics (unused variable in EBCDIC) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c44a824683e7cc40989841a31896b62dcfc8a29;p=thirdparty%2Fapache%2Fhttpd.git Cosmetics (unused variable in EBCDIC) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@94619 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/modules/proxy/proxy_util.c b/src/modules/proxy/proxy_util.c index 22e72e837a6..dd95471c858 100644 --- a/src/modules/proxy/proxy_util.c +++ b/src/modules/proxy/proxy_util.c @@ -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';