You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jf...@apache.org on 2011/07/21 11:04:57 UTC

svn commit: r1149082 - /tomcat/native/branches/1.1.x/native/src/ssl.c

Author: jfclere
Date: Thu Jul 21 09:04:56 2011
New Revision: 1149082

URL: http://svn.apache.org/viewvc?rev=1149082&view=rev
Log:
macosx openssl needs more :-(

Modified:
    tomcat/native/branches/1.1.x/native/src/ssl.c

Modified: tomcat/native/branches/1.1.x/native/src/ssl.c
URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/src/ssl.c?rev=1149082&r1=1149081&r2=1149082&view=diff
==============================================================================
--- tomcat/native/branches/1.1.x/native/src/ssl.c (original)
+++ tomcat/native/branches/1.1.x/native/src/ssl.c Thu Jul 21 09:04:56 2011
@@ -500,7 +500,9 @@ TCN_IMPLEMENT_CALL(jint, SSL, initialize
     ERR_load_crypto_strings();
     SSL_load_error_strings();
     SSL_library_init();
-    OpenSSL_add_all_ciphers() ;
+    OpenSSL_add_all_algorithms();
+    OpenSSL_add_all_ciphers();
+    OpenSSL_add_all_digests(); 
 #if HAVE_ENGINE_LOAD_BUILTIN_ENGINES
     ENGINE_load_builtin_engines();
 #endif



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org