diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-05-15 15:42:53 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-05-15 15:42:53 +0000 |
commit | 6ddfbf06625eca15ddf24ac95b755cdc9db32bfa (patch) | |
tree | fdf4cccdd271b3fce401cff82c911aeb2a390703 /src/core/ngx_conf_file.c | |
parent | 79a804880ee362a1256e6e8aeadb73f7f5cf0885 (diff) | |
download | nginx-6ddfbf06625eca15ddf24ac95b755cdc9db32bfa.tar.gz nginx-6ddfbf06625eca15ddf24ac95b755cdc9db32bfa.zip |
nginx-0.0.1-2003-05-15-19:42:53 import
Diffstat (limited to 'src/core/ngx_conf_file.c')
-rw-r--r-- | src/core/ngx_conf_file.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c index b8bbc5224..5e1f1739a 100644 --- a/src/core/ngx_conf_file.c +++ b/src/core/ngx_conf_file.c @@ -85,8 +85,8 @@ ngx_log_debug(cf->log, "token %d" _ rc); } else { ngx_log_error(NGX_LOG_EMERG, cf->log, 0, - "%s %s in %s:%d", - name->data, rv, + "%s in %s:%d", + rv, cf->conf_file->file.name.data, cf->conf_file->line); return NGX_CONF_ERROR; @@ -493,8 +493,8 @@ char *ngx_conf_set_size_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) char *ngx_conf_set_msec_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) { - int size, total, len, scale, i; - u_int max; + int size, total, len, scale; + u_int max, i; char last, *start; ngx_str_t *value; @@ -584,8 +584,8 @@ char *ngx_conf_set_msec_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) char *ngx_conf_set_sec_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf) { - int size, total, len, scale, i; - u_int max; + int size, total, len, scale; + u_int max, i; char last, *start; ngx_str_t *value; |