From d506c03aa0f41e4918c73e9bebcb59a01ba18e7e Mon Sep 17 00:00:00 2001 From: Maxime Henrion Date: Tue, 25 Nov 2025 12:37:02 -0500 Subject: [PATCH] BUG/MINOR: acme: fix ha_alert() call A NULL pointer was passed as the format string, so this alert message was never written. Must be backported to 3.2. --- src/acme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acme.c b/src/acme.c index 17c8b1a5e..b8ad8df67 100644 --- a/src/acme.c +++ b/src/acme.c @@ -662,7 +662,7 @@ static int cfg_postsection_acme() rv = snprintf(store_path, sizeof(store_path), "%s/%s", global_ssl.crt_base, cur_acme->account.file); if (rv >= sizeof(store_path)) { - ha_alert(errmsg, "'%s/%s' : path too long", global_ssl.crt_base, cur_acme->account.file); + ha_alert("'%s/%s' : path too long", global_ssl.crt_base, cur_acme->account.file); err_code |= ERR_ALERT | ERR_FATAL; goto out; }