diff options
Diffstat (limited to 'src/http/modules/perl/nginx.xs')
-rw-r--r-- | src/http/modules/perl/nginx.xs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/modules/perl/nginx.xs b/src/http/modules/perl/nginx.xs index 1182d8527..78455b951 100644 --- a/src/http/modules/perl/nginx.xs +++ b/src/http/modules/perl/nginx.xs @@ -643,7 +643,8 @@ sendfile(r, filename, offset = -1, bytes = 0) clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); of.test_dir = 0; - of.retest = clcf->open_file_cache_retest; + of.valid = clcf->open_file_cache_valid; + of.min_uses = clcf->open_file_cache_min_uses; of.errors = clcf->open_file_cache_errors; of.events = clcf->open_file_cache_events; |