BUG/MINOR: acme: fix ha_alert() call
Some checks are pending
Contrib / build (push) Waiting to run
alpine/musl / gcc (push) Waiting to run
VTest / Generate Build Matrix (push) Waiting to run
VTest / (push) Blocked by required conditions
Windows / Windows, gcc, all features (push) Waiting to run

A NULL pointer was passed as the format string, so this alert message
was never written.

Must be backported to 3.2.
This commit is contained in:
Maxime Henrion 2025-11-25 12:37:02 -05:00 committed by William Lallemand
parent de29000e60
commit d506c03aa0

View file

@ -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;
}