From: William Lallemand Date: Thu, 9 Oct 2025 08:58:22 +0000 (+0200) Subject: MEDIUM: acme: don't insert acme account key in ckchs_tree X-Git-Tag: v3.3-dev10~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9344ecaade58b970a50c3ae8b1a69f84740a59ff;p=thirdparty%2Fhaproxy.git 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. --- 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);