| 558 | } |
| 559 | |
| 560 | apr_status_t md_reg_delete_acct(md_reg_t *reg, apr_pool_t *p, const char *acct_id) |
| 561 | { |
| 562 | apr_status_t rv = APR_SUCCESS; |
| 563 | |
| 564 | rv = md_store_remove(reg->store, MD_SG_ACCOUNTS, acct_id, MD_FN_ACCOUNT, p, 1); |
| 565 | if (APR_SUCCESS == rv) { |
| 566 | md_store_remove(reg->store, MD_SG_ACCOUNTS, acct_id, MD_FN_ACCT_KEY, p, 1); |
| 567 | } |
| 568 | return rv; |
| 569 | } |
| 570 | |
| 571 | /**************************************************************************************************/ |
| 572 | /* certificate related */ |
nothing calls this directly
no test coverage detected