Added a call to a library function which adds all algorithms to OpenSSL to the SSL initialization code.

This commit is contained in:
Markus Makela 2015-06-02 06:04:06 +03:00
parent d7232d8b6e
commit 76655e7136

View File

@ -1377,6 +1377,8 @@ int main(int argc, char **argv)
SSL_library_init();
SSL_load_error_strings();
OPENSSL_add_all_algorithms_noconf();
int n_locks = CRYPTO_num_locks();
if((ssl_locks = malloc(n_locks*sizeof(SPINLOCK))) == NULL)
{