| 739 | } |
| 740 | |
| 741 | static apr_status_t fs_remove(md_store_t *store, md_store_group_t group, |
| 742 | const char *name, const char *aspect, |
| 743 | apr_pool_t *p, int force) |
| 744 | { |
| 745 | md_store_fs_t *s_fs = FS_STORE(store); |
| 746 | return md_util_pool_vdo(pfs_remove, s_fs, p, group, name, aspect, force, NULL); |
| 747 | } |
| 748 | |
| 749 | static apr_status_t pfs_purge(void *baton, apr_pool_t *p, apr_pool_t *ptemp, va_list ap) |
| 750 | { |
nothing calls this directly
no test coverage detected