MCPcopy Create free account
hub / github.com/apache/httpd / fs_is_newer

Function fs_is_newer

modules/md/md_store_fs.c:574–586  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

572}
573
574static 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
588static apr_status_t pfs_get_modified(void *baton, apr_pool_t *p, apr_pool_t *ptemp, va_list ap)
589{

Callers

nothing calls this directly

Calls 1

md_util_pool_vdoFunction · 0.85

Tested by

no test coverage detected