From 9bc41a4281703d32e74f416a62592fe2daf93e96 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Sun, 22 Mar 2009 15:50:07 +0000 Subject: [PATCH] style fix: remove tabs --- src/http/ngx_http_parse.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) 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; + } } }