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

Function md_reg_delete_acct

modules/md/md_reg.c:560–569  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

558}
559
560apr_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 */

Callers

nothing calls this directly

Calls 1

md_store_removeFunction · 0.85

Tested by

no test coverage detected