summaryrefslogtreecommitdiff
path: root/sapi
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2008-01-16 15:50:37 +0000
committerIlia Alshanetsky <iliaa@php.net>2008-01-16 15:50:37 +0000
commit23994f91500e82e9c99cd43d8b9ca04ce24123f8 (patch)
tree9f43b882584afcd45942c8adf8deeeca35d49bd7 /sapi
parentb42398f850a43297ef2f5aa95e82a56566ad29f5 (diff)
downloadphp-git-23994f91500e82e9c99cd43d8b9ca04ce24123f8.tar.gz
MFB: Fixed bug #42779 (Incorrect forcing from HTTP/1.0 request to HTTP/1.1
response)
Diffstat (limited to 'sapi')
-rw-r--r--sapi/apache2handler/sapi_apache2.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c
index 85ca3314dd..524a10f52a 100644
--- a/sapi/apache2handler/sapi_apache2.c
+++ b/sapi/apache2handler/sapi_apache2.c
@@ -134,8 +134,6 @@ php_apache_sapi_send_headers(sapi_headers_struct *sapi_headers TSRMLS_DC)
ctx->r->proto_num = 1000 + (sline[7]-'0');
if ((sline[7]-'0') == 0) {
apr_table_set(ctx->r->subprocess_env, "force-response-1.0", "true");
- } else {
- apr_table_set(ctx->r->subprocess_env, "force-response-1.1", "true");
}
}