| 307 | } reg_do_ctx; |
| 308 | |
| 309 | static int reg_md_iter(void *baton, md_store_t *store, md_t *md, apr_pool_t *ptemp) |
| 310 | { |
| 311 | reg_do_ctx *ctx = baton; |
| 312 | |
| 313 | (void)store; |
| 314 | if (!ctx->exclude || strcmp(ctx->exclude, md->name)) { |
| 315 | state_init(ctx->reg, ptemp, (md_t*)md); |
| 316 | return ctx->cb(ctx->baton, ctx->reg, md); |
| 317 | } |
| 318 | return 1; |
| 319 | } |
| 320 | |
| 321 | static int reg_do(md_reg_do_cb *cb, void *baton, md_reg_t *reg, apr_pool_t *p, const char *exclude) |
| 322 | { |
nothing calls this directly
no test coverage detected