# HG changeset patch # User Igor Sysoev # Date 1237737007 0 # Node ID c65755e03084676cbfb621bc5ec66b803ff40a89 # Parent 859f6675a5535645aa0188970e06593b83461111 style fix: remove tabs diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c --- a/src/http/ngx_http_parse.c +++ b/src/http/ngx_http_parse.c @@ -1536,24 +1536,24 @@ ngx_http_split_args(ngx_http_request_t * while (p < last) { - ch = *p++; + ch = *p++; - if (ch == '?') { - args->len = last - p; - args->data = p; + if (ch == '?') { + args->len = last - p; + args->data = p; - uri->len = p - 1 - uri->data; + uri->len = p - 1 - uri->data; - if (ngx_strlchr(p, last, '\0') != NULL) { - r->zero_in_uri = 1; - } + if (ngx_strlchr(p, last, '\0') != NULL) { + r->zero_in_uri = 1; + } - return; - } + return; + } - if (ch == '\0') { - r->zero_in_uri = 1; - continue; - } + if (ch == '\0') { + r->zero_in_uri = 1; + continue; + } } }