From: Bradley Nicholes Date: Thu, 4 Oct 2001 00:27:24 +0000 (+0000) Subject: Eliminating a compiler warning X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf02c41271d0bab0bd5e67181e1af4f165d9d437;p=thirdparty%2Fapache%2Fhttpd.git Eliminating a compiler warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91267 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/modules/proxy/proxy_http.c b/src/modules/proxy/proxy_http.c index d68ef28d241..112b9d7452a 100644 --- a/src/modules/proxy/proxy_http.c +++ b/src/modules/proxy/proxy_http.c @@ -171,8 +171,8 @@ int ap_proxy_http_handler(request_rec *r, cache_req *c, char *url, const char *proxyhost, int proxyport) { const char *strp; - char *strp2, *pragma; - const char *err, *desthost; + char *strp2; + const char *err, *desthost, *pragma; int i, j, sock, len, backasswards; array_header *reqhdrs_arr; table *resp_hdrs;