| 1106 | } |
| 1107 | |
| 1108 | static apr_status_t fs_rename(md_store_t *store, apr_pool_t *p, |
| 1109 | md_store_group_t group, const char *from, const char *to) |
| 1110 | { |
| 1111 | md_store_fs_t *s_fs = FS_STORE(store); |
| 1112 | return md_util_pool_vdo(pfs_rename, s_fs, p, group, from, to, NULL); |
| 1113 | } |
| 1114 | |
| 1115 | static apr_status_t fs_lock_global(md_store_t *store, apr_pool_t *p, apr_time_t max_wait) |
| 1116 | { |
nothing calls this directly
no test coverage detected