diff src/http/ngx_http_request.c @ 3978:6b608bf9f3ae

Accept-Encoding refactoring: remove ancient MSIE 4.x test for gzip
author Igor Sysoev <igor@sysoev.ru>
date Sat, 30 Jul 2011 06:20:06 +0000
parents e3cb8e27e413
children 77604e9a1ed8 d9b486dbf7e5
line wrap: on
line diff
--- 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_req
 
             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_req
     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;
     }