diff options
author | Igor Sysoev <igor@sysoev.ru> | 2010-02-01 12:58:07 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2010-02-01 12:58:07 +0000 |
commit | b681f7184cbf234972292dfb3938dcfbe5fff05b (patch) | |
tree | c63b25c850d8e1ee3132c34570115aa98eca3d76 /src/http/ngx_http_core_module.c | |
parent | 8164f329fe7703c3abb7e73b0c456a5b1c032b64 (diff) | |
download | nginx-b681f7184cbf234972292dfb3938dcfbe5fff05b.tar.gz nginx-b681f7184cbf234972292dfb3938dcfbe5fff05b.zip |
do not disable keepalive after POST requests for MSIE 7+
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 78c141220..eb1785090 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -785,7 +785,7 @@ ngx_http_handler(ngx_http_request_t *r) if (r->keepalive) { - if (r->headers_in.msie) { + if (r->headers_in.msie6) { if (r->method == NGX_HTTP_POST) { /* * MSIE may wait for some time if an response for |