mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-23 23:28:47 -04:00
MINOR: ssl: remove OpenSSL 1.0.2 mention into certificate loading error
Remove the mention to OpenSSL 1.0.2 in the certificate chain loading error, which is not relevant. Could be backported in 2.7.
This commit is contained in:
parent
2ca01589a0
commit
a21ca74e83
1 changed files with 1 additions and 1 deletions
|
|
@ -3389,7 +3389,7 @@ static int ssl_sock_load_cert_chain(const char *path, const struct ckch_data *da
|
|||
#ifdef SSL_CTX_set1_chain
|
||||
if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
|
||||
ret = ERR_get_error();
|
||||
memprintf(err, "%sunable to load chain certificate into SSL Context '%s': %s. Make sure you are linking against Openssl >= 1.0.2.\n",
|
||||
memprintf(err, "%sunable to load chain certificate into SSL Context '%s': %s.\n",
|
||||
err && *err ? *err : "", path, ERR_reason_error_string(ret));
|
||||
errcode |= ERR_ALERT | ERR_FATAL;
|
||||
goto end;
|
||||
|
|
|
|||
Loading…
Reference in a new issue