if (!r->status_line)
r->status_line = status_lines[ap_index_of_response(r->status)];
- /* mod_proxy is only HTTP/1.0, so avoid sending HTTP/1.1 error response;
- * kluge around broken browsers when indicated by force-response-1.0
+ /* kluge around broken browsers when indicated by force-response-1.0
*/
- if (r->proxyreq != NOT_PROXY
- || (r->proto_num == HTTP_VERSION(1,0)
- && ap_table_get(r->subprocess_env, "force-response-1.0"))) {
+ if (r->proto_num == HTTP_VERSION(1,0)
+ && ap_table_get(r->subprocess_env, "force-response-1.0")) {
protocol = "HTTP/1.0";
r->connection->keepalive = -1;