| 125 | } |
| 126 | |
| 127 | apr_status_t md_store_get_fname(const char **pfname, |
| 128 | md_store_t *store, md_store_group_t group, |
| 129 | const char *name, const char *aspect, |
| 130 | apr_pool_t *p) |
| 131 | { |
| 132 | if (store->get_fname) { |
| 133 | return store->get_fname(pfname, store, group, name, aspect, p); |
| 134 | } |
| 135 | return APR_ENOTIMPL; |
| 136 | } |
| 137 | |
| 138 | int md_store_is_newer(md_store_t *store, md_store_group_t group1, md_store_group_t group2, |
| 139 | const char *name, const char *aspect, apr_pool_t *p) |
no outgoing calls
no test coverage detected