From cf72132f222b0997fe856eab00b122cb41eba86f Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Tue, 14 Apr 2026 10:09:03 +0200 Subject: [PATCH] MINOR: acme: display the type of challenge in ACME_INITIAL_DELAY The ACME_INITIAL_DELAY state displays a message about 'dns-01', but this state is also used for 'dns-persist-01'. This patch displays the challenge that was configured instead of dns-01 --- src/acme.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/acme.c b/src/acme.c index cd8f681ff..0756cd249 100644 --- a/src/acme.c +++ b/src/acme.c @@ -2525,8 +2525,8 @@ re: st = ACME_CHALLENGE; ctx->http_state = ACME_HTTP_REQ; ctx->state = st; - send_log(NULL, LOG_NOTICE, "acme: %s: dns-01: waiting %ds\n", - ctx->store->path, ctx->cfg->dns_delay); + send_log(NULL, LOG_NOTICE, "acme: %s: %s: waiting %ds\n", + ctx->store->path, ctx->cfg->challenge, ctx->cfg->dns_delay); task->expire = tick_add(now_ms, ctx->cfg->dns_delay * 1000); return task;