mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08:00
openssl: add details to "unable to set client certificate" error
from: "curl: (58) unable to set client certificate" to: curl: (58) unable to set client certificate [error:0A00018F:SSL routines::ee key too small] Closes #9228
This commit is contained in:
parent
e1acfafa49
commit
dc8c859b0c
1
.mailmap
1
.mailmap
@ -93,3 +93,4 @@ Christian Schmitz <support@monkeybreadsoftware.de>
|
||||
Max Mehl <max.mehl@fsfe.org>
|
||||
rzrymiak on github <106121613+rzrymiak@users.noreply.github.com>
|
||||
Oliver Roberts <oliver@futaura.co.uk>
|
||||
opensignature on github <antonio@piumarossa.it>
|
||||
|
@ -868,8 +868,9 @@ int cert_stuff(struct Curl_easy *data,
|
||||
}
|
||||
|
||||
if(SSL_CTX_use_certificate(ctx, params.cert) != 1) {
|
||||
failf(data, "unable to set client certificate");
|
||||
X509_free(params.cert);
|
||||
failf(data, "unable to set client certificate [%s]",
|
||||
ossl_strerror(ERR_get_error(), error_buffer,
|
||||
sizeof(error_buffer)));
|
||||
return 0;
|
||||
}
|
||||
X509_free(params.cert); /* we don't need the handle any more... */
|
||||
|
Loading…
x
Reference in New Issue
Block a user