# HG changeset patch # User Igor Sysoev # Date 1181044539 0 # Node ID 2c2271d3aac53e78b01cc786e3911c09f6d15681 # Parent 5e4d3b5d7ad0a8e3708f19e95bf5d966d74a752a change wording diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c --- a/src/core/ngx_conf_file.c +++ b/src/core/ngx_conf_file.c @@ -344,7 +344,7 @@ ngx_conf_handler(ngx_conf_t *cf, ngx_int } ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "the \"%s\" directive %s", name->data, rv); + "\"%s\" directive %s", name->data, rv); return NGX_ERROR; } @@ -360,13 +360,13 @@ ngx_conf_handler(ngx_conf_t *cf, ngx_int not_allowed: ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "directive \"%s\" is not allowed here", name->data); + "\"%s\" directive is not allowed here", name->data); return NGX_ERROR; invalid: ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "invalid number arguments in directive \"%s\"", + "invalid number arguments in \"%s\" directive", name->data); return NGX_ERROR;