aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_parse.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-06-23 16:34:54 +0000
committerIgor Sysoev <igor@sysoev.ru>2010-06-23 16:34:54 +0000
commitaa6936e61a43169bc7ef080e475399f4a514131c (patch)
tree0705cf8d11e5c16508ceb0bab2d882bd91348d22 /src/http/ngx_http_parse.c
parent0923d0814826f390a6b69a1ce7f41e55650ea169 (diff)
downloadnginx-aa6936e61a43169bc7ef080e475399f4a514131c.tar.gz
nginx-aa6936e61a43169bc7ef080e475399f4a514131c.zip
style fix
Diffstat (limited to 'src/http/ngx_http_parse.c')
-rw-r--r--src/http/ngx_http_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c
index f5be2f0e2..949006b47 100644
--- a/src/http/ngx_http_parse.c
+++ b/src/http/ngx_http_parse.c
@@ -272,7 +272,7 @@ ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b)
/* space* before URI */
case sw_spaces_before_uri:
- if (ch == '/' ){
+ if (ch == '/') {
r->uri_start = p;
state = sw_after_slash_in_uri;
break;