summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-09-02 13:54:28 +0000
committerIgor Sysoev <igor@sysoev.ru>2010-09-02 13:54:28 +0000
commit4db3b3e2c47edff048af5a4b82a94521b7206991 (patch)
treeee77856bb66b6bfb09a5a1ddfc7a1144ad32b85f
parent8a9f761927dc36356442b393c81e48d7ff4cc7fd (diff)
downloadnginx-4db3b3e2c47edff048af5a4b82a94521b7206991.tar.gz
gzip_disable msie6 did not inherited if nginx was built without PCRE
-rw-r--r--src/http/ngx_http_core_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c
index b438907bb..53ea3f151 100644
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -3111,8 +3111,8 @@ ngx_http_core_create_loc_conf(ngx_conf_t *cf)
clcf->gzip_http_version = NGX_CONF_UNSET_UINT;
#if (NGX_PCRE)
clcf->gzip_disable = NGX_CONF_UNSET_PTR;
- clcf->gzip_disable_msie6 = 3;
#endif
+ clcf->gzip_disable_msie6 = 3;
#endif
return clcf;