diff options
| author | Maxim Dounin <mdounin@mdounin.ru> | 2012-11-26 21:30:45 +0000 |
|---|---|---|
| committer | Maxim Dounin <mdounin@mdounin.ru> | 2012-11-26 21:30:45 +0000 |
| commit | 0c563970bea58a0af9a0df3bdc2518eb65199bd3 (patch) | |
| tree | 1011787d1c11c90bdafc698dec059cffe9c6c54d | |
| parent | 1469b5145142ba2096e7c3467e867e8bf67cab25 (diff) | |
| download | nginx-0c563970bea58a0af9a0df3bdc2518eb65199bd3.tar.gz nginx-0c563970bea58a0af9a0df3bdc2518eb65199bd3.tar.bz2 | |
Gunzip: added missing ngx_http_clear_etag().
| -rw-r--r-- | src/http/modules/ngx_http_gunzip_filter_module.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/modules/ngx_http_gunzip_filter_module.c b/src/http/modules/ngx_http_gunzip_filter_module.c index b73fe4859..d4e41e4a0 100644 --- a/src/http/modules/ngx_http_gunzip_filter_module.c +++ b/src/http/modules/ngx_http_gunzip_filter_module.c @@ -165,6 +165,7 @@ ngx_http_gunzip_header_filter(ngx_http_request_t *r) ngx_http_clear_content_length(r); ngx_http_clear_accept_ranges(r); + ngx_http_clear_etag(r); return ngx_http_next_header_filter(r); } |
