From 8258c8166a61870030a620930193998960109dc0 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Thu, 24 Jul 2025 11:47:20 +0200 Subject: [PATCH] MINOR: acme: add ACME to the haproxy -vv feature list Add "ACME" in the feature list in order to check if the support was built successfully. --- src/acme.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/acme.c b/src/acme.c index f3898b1cb..9668e06ff 100644 --- a/src/acme.c +++ b/src/acme.c @@ -2457,9 +2457,14 @@ static struct cli_kw_list cli_kws = {{ },{ { { NULL }, NULL, NULL, NULL } }}; - INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); +static void __acme_init(void) +{ + hap_register_feature("ACME"); +} +INITCALL0(STG_REGISTER, __acme_init); + #endif /* ! HAVE_ACME */ /* -- 2.47.3