Index: trunk/modules/proxy/mod_proxy_http.c =================================================================== --- trunk/modules/proxy/mod_proxy_http.c (revision 568317) +++ trunk/modules/proxy/mod_proxy_http.c (working copy) @@ -947,7 +947,7 @@ else if (old_te_val) { if (force10 || (apr_table_get(r->subprocess_env, "proxy-sendcl") - && !apr_table_get(r->subprocess_env, "proxy-sendchunks"))) { + && !apr_table_get(r->subprocess_env, "proxy-sendchunked"))) { rb_method = RB_SPOOL_CL; } else { @@ -959,7 +959,7 @@ rb_method = RB_STREAM_CL; } else if (!force10 - && apr_table_get(r->subprocess_env, "proxy-sendchunks") + && apr_table_get(r->subprocess_env, "proxy-sendchunked") && !apr_table_get(r->subprocess_env, "proxy-sendcl")) { rb_method = RB_STREAM_CHUNKED; }