From 9344ecaade58b970a50c3ae8b1a69f84740a59ff Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Thu, 9 Oct 2025 10:58:22 +0200 Subject: [PATCH] MEDIUM: acme: don't insert acme account key in ckchs_tree Don't insert the acme account key in the ckchs_tree anymore. ckch_store are not made to only include a private key. CLI operations are not possible with them either. That doesn't make much sense to keep it that way until we rework the ckch_store. --- src/acme.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/acme.c b/src/acme.c index 9ce93b03e..62917c335 100644 --- a/src/acme.c +++ b/src/acme.c @@ -734,8 +734,7 @@ static int cfg_postsection_acme() goto out; } - /* insert into the ckchs tree */ - ebst_insert(&ckchs_tree, &store->node); + ckch_store_free(store); out: EVP_PKEY_free(key);