| 929 | } |
| 930 | |
| 931 | AP_DECLARE(int) ap_cfg_closefile(ap_configfile_t *cfp) |
| 932 | { |
| 933 | #ifdef DEBUG |
| 934 | ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, NULL, APLOGNO(00551) |
| 935 | "Done with config file %s", cfp->name); |
| 936 | #endif |
| 937 | return (cfp->close == NULL) ? 0 : cfp->close(cfp->param); |
| 938 | } |
| 939 | |
| 940 | /* we can't use apr_file_* directly because of linking issues on Windows */ |
| 941 | static apr_status_t cfg_close(void *param) |
no test coverage detected