mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
From: Johan van Selst
"you replaced the old SSLeay_add_ssl_algorithms() call with OpenSSL_add_all_algorithms(), however unlike the name suggests, the second function is not a superset of the first. When using SSL both these functions will need to be called in order to offer complete functionality"
This commit is contained in:
parent
b347a7a96e
commit
9b5c00a664
@ -637,6 +637,9 @@ int Curl_ossl_init(void)
|
|||||||
SSL_load_error_strings();
|
SSL_load_error_strings();
|
||||||
|
|
||||||
/* Init the global ciphers and digests */
|
/* Init the global ciphers and digests */
|
||||||
|
if(!SSLeay_add_ssl_algorithms())
|
||||||
|
return 0;
|
||||||
|
|
||||||
OpenSSL_add_all_algorithms();
|
OpenSSL_add_all_algorithms();
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user