Commit 9b5c00a6 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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"
parent b347a7a9
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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;