aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_file_cache.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2011-07-24 19:43:52 +0000
committerIgor Sysoev <igor@sysoev.ru>2011-07-24 19:43:52 +0000
commit92161bac79d740885eff84e3ff7b48959dea314a (patch)
tree948b3fcbc08295540d8a1577e46a792f5028dcfa /src/http/ngx_http_file_cache.c
parent6cb6fc4a0900aae03d98a5d388e8eb899e7dbb3e (diff)
downloadnginx-92161bac79d740885eff84e3ff7b48959dea314a.tar.gz
nginx-92161bac79d740885eff84e3ff7b48959dea314a.zip
fix r3968
Diffstat (limited to 'src/http/ngx_http_file_cache.c')
-rw-r--r--src/http/ngx_http_file_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_file_cache.c b/src/http/ngx_http_file_cache.c
index cce66a807..184677ef2 100644
--- a/src/http/ngx_http_file_cache.c
+++ b/src/http/ngx_http_file_cache.c
@@ -533,7 +533,7 @@ ngx_http_file_cache_exists(ngx_http_file_cache_t *cache, ngx_http_cache_t *c)
if (fcn->exists || fcn->uses >= c->min_uses) {
c->exists = fcn->exists;
- if (c->body_start) {
+ if (fcn->body_start) {
c->body_start = fcn->body_start;
}