Replace the error message of BIO_new_file() when the account-key cannot
be created on disk by "acme: cannot create the file '%s'". It was
previously "acme: out of memory." Which is unclear.
Must be backported to 3.2.
}
if ((bio = BIO_new_file(store->path, "w+")) == NULL) {
- ha_alert("acme: out of memory.\n");
+ ha_alert("acme: cannot create the file '%s', check your permissions.\n", cur_acme->account.file);
err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
goto out;
}