diff options
author | Igor Sysoev <igor@sysoev.ru> | 2010-06-23 16:34:54 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2010-06-23 16:34:54 +0000 |
commit | aa6936e61a43169bc7ef080e475399f4a514131c (patch) | |
tree | 0705cf8d11e5c16508ceb0bab2d882bd91348d22 /src/core/ngx_conf_file.c | |
parent | 0923d0814826f390a6b69a1ce7f41e55650ea169 (diff) | |
download | nginx-aa6936e61a43169bc7ef080e475399f4a514131c.tar.gz nginx-aa6936e61a43169bc7ef080e475399f4a514131c.zip |
style fix
Diffstat (limited to 'src/core/ngx_conf_file.c')
-rw-r--r-- | src/core/ngx_conf_file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c index 20d9af9e4..83c107329 100644 --- a/src/core/ngx_conf_file.c +++ b/src/core/ngx_conf_file.c @@ -671,7 +671,8 @@ ngx_conf_read_token(ngx_conf_t *cf) } } else if (ch == ' ' || ch == '\t' || ch == CR || ch == LF - || ch == ';' || ch == '{') { + || ch == ';' || ch == '{') + { last_space = 1; found = 1; } |