]> git.kaiwu.me - nginx.git/commitdiff
Style fix: removal of tabs introduced in the previous commit.
authorIgor Sysoev <igor@sysoev.ru>
Wed, 31 Aug 2011 09:26:07 +0000 (09:26 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Wed, 31 Aug 2011 09:26:07 +0000 (09:26 +0000)
src/http/modules/ngx_http_range_filter_module.c

index 3e416b302c8bf97e11dcd4a0df8618454b1fdbea..8f235d7fed9152e9954508ba8156e657422272ed 100644 (file)
@@ -305,15 +305,15 @@ ngx_http_range_parse(ngx_http_request_t *r, ngx_http_range_filter_ctx_t *ctx)
     found:
 
         if (start < end) {
-           range = ngx_array_push(&ctx->ranges);
-           if (range == NULL) {
-               return NGX_ERROR;
-           }
+            range = ngx_array_push(&ctx->ranges);
+            if (range == NULL) {
+                return NGX_ERROR;
+            }
 
-           range->start = start;
-           range->end = end;
+            range->start = start;
+            range->end = end;
 
-           size += end - start;
+            size += end - start;
         }
 
         if (*p++ != ',') {