1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

openssl: fix build error with OpenSSL < 1.0.2

Closes https://github.com/curl/curl/pull/6920
This commit is contained in:
Georeth Zhou 2021-04-20 11:11:56 +08:00 committed by Jay Satiro
parent b97718ab19
commit 6e3f2febcb

View File

@ -663,7 +663,7 @@ SSL_CTX_use_PrivateKey_blob(SSL_CTX *ctx, const struct curl_blob *blob,
static int
SSL_CTX_use_certificate_chain_blob(SSL_CTX *ctx, const struct curl_blob *blob,
const char *key_passwd)
const char *key_passwd)
{
/* SSL_CTX_add1_chain_cert introduced in OpenSSL 1.0.2 */
#if (OPENSSL_VERSION_NUMBER >= 0x1000200fL) && /* OpenSSL 1.0.2 or later */ \
@ -725,7 +725,7 @@ SSL_CTX_use_certificate_chain_blob(SSL_CTX *ctx, const struct curl_blob *blob,
return ret;
#else
(void)ctx; /* unused */
(void)in; /* unused */
(void)blob; /* unused */
(void)key_passwd; /* unused */
return 0;
#endif