aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-10-31 12:30:24 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-10-31 12:30:24 +0000
commite9b7809178b71b2a6f0d9ad6350427c85ab4dd8b (patch)
tree108a1d1ac31483d51b2e1a25da8dbdd170938548
parentbc808a7babccb2c8bdc69a7dce1bc9b217190e49 (diff)
downloadnginx-e9b7809178b71b2a6f0d9ad6350427c85ab4dd8b.tar.gz
nginx-e9b7809178b71b2a6f0d9ad6350427c85ab4dd8b.zip
style fix
-rw-r--r--src/http/ngx_http_parse.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c
index 241362c98..3151304a9 100644
--- a/src/http/ngx_http_parse.c
+++ b/src/http/ngx_http_parse.c
@@ -209,8 +209,7 @@ ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b)
break;
}
- if ((ch >= '0' && ch <= '9') || ch == '.' || ch == '-')
- {
+ if ((ch >= '0' && ch <= '9') || ch == '.' || ch == '-') {
break;
}