comparison src/http/modules/ngx_http_range_filter_module.c @ 4061:bd2ec6ce5d58

Style fix: removal of tabs introduced in the previous commit.
author Igor Sysoev <igor@sysoev.ru>
date Wed, 31 Aug 2011 09:26:07 +0000
parents 45de8d258085
children 82738a316a54
comparison
equal deleted inserted replaced
4060:45de8d258085 4061:bd2ec6ce5d58
303 } 303 }
304 304
305 found: 305 found:
306 306
307 if (start < end) { 307 if (start < end) {
308 range = ngx_array_push(&ctx->ranges); 308 range = ngx_array_push(&ctx->ranges);
309 if (range == NULL) { 309 if (range == NULL) {
310 return NGX_ERROR; 310 return NGX_ERROR;
311 } 311 }
312 312
313 range->start = start; 313 range->start = start;
314 range->end = end; 314 range->end = end;
315 315
316 size += end - start; 316 size += end - start;
317 } 317 }
318 318
319 if (*p++ != ',') { 319 if (*p++ != ',') {
320 break; 320 break;
321 } 321 }