diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-05-14 16:24:39 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-05-14 16:24:39 +0000 |
commit | 731e6a9b11267ecb26f2833997610de353beeef2 (patch) | |
tree | 3d323cbf75f049b17ce1a429d0ff2d3037957b36 /src/core/ngx_conf_file.c | |
parent | 2d252980eddcf8b77eed217704100e5d86c51430 (diff) | |
download | nginx-731e6a9b11267ecb26f2833997610de353beeef2.tar.gz nginx-731e6a9b11267ecb26f2833997610de353beeef2.zip |
style fix
Diffstat (limited to 'src/core/ngx_conf_file.c')
-rw-r--r-- | src/core/ngx_conf_file.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c index 644243781..1f6b1f732 100644 --- a/src/core/ngx_conf_file.c +++ b/src/core/ngx_conf_file.c @@ -446,7 +446,9 @@ ngx_conf_read_token(ngx_conf_t *cf) last_space = 1; sharp_comment = 0; variable = 0; - quoted = s_quoted = d_quoted = 0; + quoted = 0; + s_quoted = 0; + d_quoted = 0; cf->args->nelts = 0; b = cf->conf_file->buffer; |