From: Nick Kew Date: Wed, 17 Jun 2009 15:21:21 +0000 (+0000) Subject: mod_proxy_http: fix case sensitivity checking transfer encoding X-Git-Tag: 2.3.3~505 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=10177a507c2cc159c901525f6c2117e2bff227ef;p=thirdparty%2Fapache%2Fhttpd.git mod_proxy_http: fix case sensitivity checking transfer encoding PR 47383 [Ryuzo Yamamoto] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@785661 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 798096439bf..0f8befba75a 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,9 @@ Changes with Apache 2.3.3 mod_proxy_ajp: Avoid delivering content from a previous request which failed to send a request body. PR 46949 [Ruediger Pluem] + *) mod_proxy_http: fix case sensitivity checking transfer encoding + PR 47383 [Ryuzo Yamamoto ] + *) mod_alias: ensure Redirect issues a valid URL. PR 44020 [HÃ¥kon Stordahl ] diff --git a/modules/proxy/mod_proxy_http.c b/modules/proxy/mod_proxy_http.c index 1e80985a790..bc59aadc3d8 100644 --- a/modules/proxy/mod_proxy_http.c +++ b/modules/proxy/mod_proxy_http.c @@ -939,7 +939,7 @@ int ap_proxy_http_request(apr_pool_t *p, request_rec *r, * encoding has been done by the extensions' handler, and * do not modify add_te_chunked's logic */ - if (old_te_val && strcmp(old_te_val, "chunked") != 0) { + if (old_te_val && strcasecmp(old_te_val, "chunked") != 0) { ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server, "proxy: %s Transfer-Encoding is not supported", old_te_val);