| 225 | } |
| 226 | |
| 227 | static apr_status_t p_remove(void *baton, apr_pool_t *p, apr_pool_t *ptemp, va_list ap) |
| 228 | { |
| 229 | md_group_ctx *ctx = baton; |
| 230 | const char *name; |
| 231 | int force; |
| 232 | |
| 233 | (void)p; |
| 234 | name = va_arg(ap, const char *); |
| 235 | force = va_arg(ap, int); |
| 236 | |
| 237 | assert(name); |
| 238 | return md_store_remove(ctx->store, ctx->group, name, MD_FN_MD, ptemp, force); |
| 239 | } |
| 240 | |
| 241 | apr_status_t md_remove(md_store_t *store, apr_pool_t *p, |
| 242 | md_store_group_t group, const char *name, int force) |
nothing calls this directly
no test coverage detected