From: Igor Sysoev Date: Sun, 22 Mar 2009 15:50:07 +0000 (+0000) Subject: style fix: remove tabs X-Git-Tag: release-0.7.44~3 X-Git-Url: http://git.kaiwu.me/%7B@url%7D?a=commitdiff_plain;h=9bc41a4281703d32e74f416a62592fe2daf93e96;p=nginx.git style fix: remove tabs --- diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c index 318a33b57..87b65395b 100644 --- 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 *r, ngx_str_t *uri, ngx_str_t *args) 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; + } } }