diff src/http/modules/ngx_http_gzip_filter_module.c @ 1554:30fcc8478d85

two commits those go together by mistake *) fix gzip broken in r1544 *) fix memcached END test
author Igor Sysoev <igor@sysoev.ru>
date Mon, 01 Oct 2007 16:00:13 +0000
parents 8596627c4cc5
children 4c43e25d11ea
line wrap: on
line diff
--- a/src/http/modules/ngx_http_gzip_filter_module.c
+++ b/src/http/modules/ngx_http_gzip_filter_module.c
@@ -279,7 +279,9 @@ ngx_http_gzip_header_filter(ngx_http_req
         || r->headers_in.accept_encoding == NULL
         || (r->headers_out.content_length_n != -1
             && r->headers_out.content_length_n < conf->min_length)
-        || ngx_strcasestrn(r->headers_in.accept_encoding->value.data, "gzip", 3)
+        || ngx_strcasestrn(r->headers_in.accept_encoding->value.data,
+                           "gzip", 4 - 1)
+           == NULL
        )
     {
         return ngx_http_next_header_filter(r);