aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-06-05 11:55:39 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-06-05 11:55:39 +0000
commit1849ba824ed0426defa235956e84da70f9be6cb9 (patch)
tree4f9d81d7bc7bd1d6ea160cb087459187cecc434c
parent6633572f3118a4c4814699e32ea0671b8b64109c (diff)
downloadnginx-1849ba824ed0426defa235956e84da70f9be6cb9.tar.gz
nginx-1849ba824ed0426defa235956e84da70f9be6cb9.zip
change wording
-rw-r--r--src/core/ngx_conf_file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c
index b33b1d502..a68192fe0 100644
--- 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_t last)
}
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_t last)
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;