comparison src/http/modules/ngx_http_static_module.c @ 1767:c42431762903

open_file_cache_retest > open_file_cache_valid
author Igor Sysoev <igor@sysoev.ru>
date Fri, 21 Dec 2007 16:19:48 +0000
parents f5f124fbfa3b
children 25c93614e6b9
comparison
equal deleted inserted replaced
1766:111eb827ed44 1767:c42431762903
95 "http filename: \"%s\"", path.data); 95 "http filename: \"%s\"", path.data);
96 96
97 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); 97 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
98 98
99 of.test_dir = 0; 99 of.test_dir = 0;
100 of.retest = clcf->open_file_cache_retest; 100 of.valid = clcf->open_file_cache_valid;
101 of.errors = clcf->open_file_cache_errors; 101 of.errors = clcf->open_file_cache_errors;
102 of.events = clcf->open_file_cache_events; 102 of.events = clcf->open_file_cache_events;
103 103
104 rc = ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool); 104 rc = ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool);
105 105