diff options
author | Igor Sysoev <igor@sysoev.ru> | 2011-08-29 10:39:23 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2011-08-29 10:39:23 +0000 |
commit | 1a6c657f773ac1092e4e8da365e7d179f8bb283c (patch) | |
tree | b3f8f60e0b5e9bd97fe1fd63ef381c44880bf0a9 /src/http/ngx_http_request.c | |
parent | ee25a6384c742f9ad8bb0e8c41fa0223c10d09d2 (diff) | |
download | nginx-1a6c657f773ac1092e4e8da365e7d179f8bb283c.tar.gz nginx-1a6c657f773ac1092e4e8da365e7d179f8bb283c.zip |
Merge of r3979, r3980, r3981, r3983, r3987, r3994, r3995:
Accept-Encoding refactoring:
*) "gzip; q=0" support
*) and removal of ancient MSIE 4.x test for gzip
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 2cef4fa5b..167bc715a 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -1439,8 +1439,6 @@ ngx_http_process_user_agent(ngx_http_request_t *r, ngx_table_elt_t *h, switch (msie[5]) { case '4': - r->headers_in.msie4 = 1; - /* fall through */ case '5': r->headers_in.msie6 = 1; break; @@ -1463,7 +1461,6 @@ ngx_http_process_user_agent(ngx_http_request_t *r, ngx_table_elt_t *h, if (ngx_strstrn(user_agent, "Opera", 5 - 1)) { r->headers_in.opera = 1; r->headers_in.msie = 0; - r->headers_in.msie4 = 0; r->headers_in.msie6 = 0; } |