style fix: remove trailing spaces
Igor Sysoev
14 years ago
109 | 109 |
of.retest = clcf->open_file_cache_retest;
|
110 | 110 |
of.errors = clcf->open_file_cache_errors;
|
111 | 111 |
of.events = clcf->open_file_cache_events;
|
112 | |
|
|
112 |
|
113 | 113 |
rc = ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool);
|
114 | 114 |
|
115 | 115 |
if (rc == NGX_ERROR) {
|
636 | 636 |
}
|
637 | 637 |
|
638 | 638 |
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
|
639 | |
|
|
639 |
|
640 | 640 |
of.test_dir = 0;
|
641 | |
of.retest = clcf->open_file_cache_retest;
|
642 | |
of.errors = clcf->open_file_cache_errors;
|
643 | |
of.events = clcf->open_file_cache_events;
|
|
641 |
of.retest = clcf->open_file_cache_retest;
|
|
642 |
of.errors = clcf->open_file_cache_errors;
|
|
643 |
of.events = clcf->open_file_cache_events;
|
644 | 644 |
|
645 | 645 |
path.len = ngx_strlen(filename);
|
646 | 646 |
|
|
650 | 650 |
}
|
651 | 651 |
|
652 | 652 |
(void) ngx_cpystrn(path.data, filename, path.len + 1);
|
653 | |
|
|
653 |
|
654 | 654 |
rc = ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool);
|
655 | 655 |
|
656 | 656 |
if (rc == NGX_ERROR) {
|