summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-03-22 15:50:07 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-03-22 15:50:07 +0000
commit9bc41a4281703d32e74f416a62592fe2daf93e96 (patch)
tree490479de21c0957bc9fd44d444eb79788aa90b4d
parent17f0e66bd9794d3a3b5ed5c67461eac22398c3d0 (diff)
downloadnginx-9bc41a4281703d32e74f416a62592fe2daf93e96.tar.gz
style fix: remove tabs
-rw-r--r--src/http/ngx_http_parse.c28
1 files 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;
+ }
}
}