From 07335d89df3cdd871fefe3bc4e6147f7ed37a2f1 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 25 Nov 2010 15:36:24 +0000 Subject: use "\" to escape "default", "include", and "hostnames" values instead of "!" --- src/http/modules/ngx_http_map_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/http/modules/ngx_http_map_module.c') 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++; } -- cgit