| 610 | } |
| 611 | |
| 612 | static apr_time_t fs_get_modified(md_store_t *store, md_store_group_t group, |
| 613 | const char *name, const char *aspect, apr_pool_t *p) |
| 614 | { |
| 615 | md_store_fs_t *s_fs = FS_STORE(store); |
| 616 | apr_time_t mtime; |
| 617 | apr_status_t rv; |
| 618 | |
| 619 | rv = md_util_pool_vdo(pfs_get_modified, s_fs, p, group, name, aspect, &mtime, NULL); |
| 620 | if (APR_SUCCESS == rv) { |
| 621 | return mtime; |
| 622 | } |
| 623 | return 0; |
| 624 | } |
| 625 | |
| 626 | static apr_status_t pfs_save(void *baton, apr_pool_t *p, apr_pool_t *ptemp, va_list ap) |
| 627 | { |
nothing calls this directly
no test coverage detected