PR 47383 [Ryuzo Yamamoto]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@785661
13f79535-47bb-0310-9956-
ffa450edef68
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 <ryuzo.yamamoto gmail.com>]
+
*) mod_alias: ensure Redirect issues a valid URL.
PR 44020 [HÃ¥kon Stordahl <hakon stordahl.org>]
* 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);