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

Function fs_get_modified

modules/md/md_store_fs.c:612–624  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

610}
611
612static 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
626static apr_status_t pfs_save(void *baton, apr_pool_t *p, apr_pool_t *ptemp, va_list ap)
627{

Callers

nothing calls this directly

Calls 1

md_util_pool_vdoFunction · 0.85

Tested by

no test coverage detected