diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-11-10 17:17:31 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-11-10 17:17:31 +0000 |
commit | 7832933eed3cb0187eca4fba87076f10c897925e (patch) | |
tree | 0ee672ca731819d447ec05da65e40610ae0d6ce4 /src/core | |
parent | 74e95c224ad84c6b84b5a834f49c014a441916b5 (diff) | |
download | nginx-7832933eed3cb0187eca4fba87076f10c897925e.tar.gz nginx-7832933eed3cb0187eca4fba87076f10c897925e.zip |
nginx-0.0.1-2003-11-10-20:17:31 import
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ngx_conf_file.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c index 24aa096fd..5c83afc81 100644 --- a/src/core/ngx_conf_file.c +++ b/src/core/ngx_conf_file.c @@ -368,6 +368,11 @@ ngx_log_debug(cf->log, "%d:%d:%d:%d:%d '%c'" _ return NGX_OK; } + ngx_log_error(NGX_LOG_EMERG, cf->log, 0, + "unexpected '%c' in %s:%d", + ch, cf->conf_file->file.name.data, + cf->conf_file->line); + return NGX_ERROR; } |