mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-09 01:20:40 -04:00
MINOR: ssl: Missing '\n' in error message
Fix missing '\n' in error message raised when trying to load a password protected private key.
This commit is contained in:
parent
8e16fd2cf1
commit
b3a44158fb
1 changed files with 1 additions and 1 deletions
|
|
@ -3825,7 +3825,7 @@ int ssl_sock_passwd_cb(char *buf, int size, int rwflag, void *userdata)
|
|||
|
||||
if (!global_ssl.passphrase_cmd) {
|
||||
data->passphrase_idx = -1;
|
||||
ha_alert("Trying to load a passphrase-protected private key without an 'ssl-passphrase-cmd' defined.");
|
||||
ha_alert("Trying to load a passphrase-protected private key without an 'ssl-passphrase-cmd' defined.\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue