From: Maxim Dounin Date: Thu, 18 Oct 2012 14:27:40 +0000 (+0000) Subject: Gunzip: fixed r->gzip_ok check. X-Git-Tag: release-1.3.8~8 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=27b7eb17d081340515cd7ee3771d68af1c6d8267;p=nginx.git Gunzip: fixed r->gzip_ok check. --- diff --git a/src/http/modules/ngx_http_gunzip_filter_module.c b/src/http/modules/ngx_http_gunzip_filter_module.c index f8434cb83..b73fe4859 100644 --- a/src/http/modules/ngx_http_gunzip_filter_module.c +++ b/src/http/modules/ngx_http_gunzip_filter_module.c @@ -145,7 +145,7 @@ ngx_http_gunzip_header_filter(ngx_http_request_t *r) return ngx_http_next_header_filter(r); } - } else if (!r->gzip_ok) { + } else if (r->gzip_ok) { return ngx_http_next_header_filter(r); }