2014-05-30 18:55:10 +02:00
|
|
|
Index: src/tls/tls_server.c
|
|
|
|
===================================================================
|
|
|
|
--- src/tls/tls_server.c.orig
|
|
|
|
+++ src/tls/tls_server.c
|
|
|
|
@@ -364,6 +364,7 @@ TLS_APPL_STATE *tls_server_init(const TL
|
2013-10-10 19:35:44 +02:00
|
|
|
*/
|
|
|
|
SSL_load_error_strings();
|
|
|
|
OpenSSL_add_ssl_algorithms();
|
|
|
|
+ OPENSSL_config(NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First validate the protocols. If these are invalid, we can't continue.
|
2014-05-30 18:55:10 +02:00
|
|
|
Index: src/tls/tls_client.c
|
|
|
|
===================================================================
|
|
|
|
--- src/tls/tls_client.c.orig
|
|
|
|
+++ src/tls/tls_client.c
|
|
|
|
@@ -307,6 +307,7 @@ TLS_APPL_STATE *tls_client_init(const TL
|
2013-10-10 19:35:44 +02:00
|
|
|
*/
|
|
|
|
SSL_load_error_strings();
|
|
|
|
OpenSSL_add_ssl_algorithms();
|
|
|
|
+ OPENSSL_config(NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create an application data index for SSL objects, so that we can
|