From: Igor Sysoev Date: Thu, 25 Nov 2010 15:36:24 +0000 (+0000) Subject: use "\" to escape "default", "include", and "hostnames" values instead of "!" X-Git-Tag: release-0.9.0~11 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=07335d89df3cdd871fefe3bc4e6147f7ed37a2f1;p=nginx.git use "\" to escape "default", "include", and "hostnames" values instead of "!" --- diff --git a/src/http/modules/ngx_http_map_module.c b/src/http/modules/ngx_http_map_module.c index 8f925a10c..e8e95f20a 100644 --- a/src/http/modules/ngx_http_map_module.c +++ b/src/http/modules/ngx_http_map_module.c @@ -434,7 +434,7 @@ found: return NGX_CONF_OK; } - if (value[0].len && value[0].data[0] == '!') { + if (value[0].len && value[0].data[0] == '\\') { value[0].len--; value[0].data++; }