comparison src/http/ngx_http_file_cache.c @ 3969:3ea15c6b16da

fix r3968
author Igor Sysoev <igor@sysoev.ru>
date Sun, 24 Jul 2011 19:43:52 +0000
parents d7ed8b8b0cdd
children 2d05952a324d
comparison
equal deleted inserted replaced
3968:d7ed8b8b0cdd 3969:3ea15c6b16da
531 } 531 }
532 532
533 if (fcn->exists || fcn->uses >= c->min_uses) { 533 if (fcn->exists || fcn->uses >= c->min_uses) {
534 534
535 c->exists = fcn->exists; 535 c->exists = fcn->exists;
536 if (c->body_start) { 536 if (fcn->body_start) {
537 c->body_start = fcn->body_start; 537 c->body_start = fcn->body_start;
538 } 538 }
539 539
540 rc = NGX_OK; 540 rc = NGX_OK;
541 541