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:
Daniel Stenberg 2009-07-27 18:31:48 +00:00
parent b347a7a96e
commit 9b5c00a664
1 changed files with 3 additions and 0 deletions

View File

@ -637,6 +637,9 @@ int Curl_ossl_init(void)
SSL_load_error_strings();
/* Init the global ciphers and digests */
if(!SSLeay_add_ssl_algorithms())
return 0;
OpenSSL_add_all_algorithms();
return 1;