diff options
author | Ruslan Ermilov <ru@nginx.com> | 2017-03-22 22:49:52 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2017-03-22 22:49:52 +0300 |
commit | abc9d62b03d92129c86f36f068d368e81f89db4e (patch) | |
tree | 75347e4c9aa9a00b74e2b4f74cb252385db08e90 /src/http/ngx_http_core_module.c | |
parent | a10267126c8cf242ad1d07e7aaa515a40a767e81 (diff) | |
download | nginx-abc9d62b03d92129c86f36f068d368e81f89db4e.tar.gz nginx-abc9d62b03d92129c86f36f068d368e81f89db4e.zip |
Unified error messages about duplicate directives.
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 2 |
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 6e31a2ade..1bd3ecd5c 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -4529,7 +4529,7 @@ ngx_http_core_limit_except(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) ngx_http_core_loc_conf_t *clcf; if (pclcf->limit_except) { - return "duplicate"; + return "is duplicate"; } pclcf->limit_except = 0xffffffff; |