]> git.kaiwu.me - nginx.git/commitdiff
change wording
authorIgor Sysoev <igor@sysoev.ru>
Tue, 5 Jun 2007 11:55:39 +0000 (11:55 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Tue, 5 Jun 2007 11:55:39 +0000 (11:55 +0000)
src/core/ngx_conf_file.c

index b33b1d5021bd8ed90c497dd8eb8f2dcbcaa47ff6..a68192fe00552c7f6b59ec1eb5eb6f7d8dab0ee5 100644 (file)
@@ -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;