| 572 | } |
| 573 | |
| 574 | static int fs_is_newer(md_store_t *store, md_store_group_t group1, md_store_group_t group2, |
| 575 | const char *name, const char *aspect, apr_pool_t *p) |
| 576 | { |
| 577 | md_store_fs_t *s_fs = FS_STORE(store); |
| 578 | int newer = 0; |
| 579 | apr_status_t rv; |
| 580 | |
| 581 | rv = md_util_pool_vdo(pfs_is_newer, s_fs, p, group1, group2, name, aspect, &newer, NULL); |
| 582 | if (APR_SUCCESS == rv) { |
| 583 | return newer; |
| 584 | } |
| 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | static apr_status_t pfs_get_modified(void *baton, apr_pool_t *p, apr_pool_t *ptemp, va_list ap) |
| 589 | { |
nothing calls this directly
no test coverage detected