From: Bradley Nicholes Date: Wed, 17 Apr 2002 16:04:32 +0000 (+0000) Subject: Fixing a type conversion error when content_length is assigned the return X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d3cff67dd806f626fca2d9b9ab3b04b999914c9;p=thirdparty%2Fapache%2Fhttpd.git Fixing a type conversion error when content_length is assigned the return value of ap_table_get() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@94680 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/modules/proxy/proxy_http.c b/src/modules/proxy/proxy_http.c index db2c057c01e..6d3788a1d2b 100644 --- a/src/modules/proxy/proxy_http.c +++ b/src/modules/proxy/proxy_http.c @@ -168,7 +168,7 @@ int ap_proxy_http_handler(request_rec *r, cache_req *c, char *url, char *destportstr = NULL; const char *urlptr = NULL; const char *datestr, *urlstr; - char *content_length; + const char *content_length; void *sconf = r->server->module_config; proxy_server_conf *conf =