https://bugzilla.novell.com/show_bug.cgi?id=720601 https://bugzilla.novell.com/show_bug.cgi?id=720601#c10 --- Comment #10 from Cristian Rodríguez <crrodriguez@opensuse.org> 2011-10-18 12:23:28 CLST --- The patch is: --- src/ne_openssl.c.orig +++ src/ne_openssl.c @@ -35,6 +35,7 @@ #include <openssl/x509v3.h> #include <openssl/rand.h> #include <openssl/opensslv.h> +#include <openssl/engine.h> · #ifdef NE_HAVE_TS_SSL #include <stdlib.h> /* for abort() */ @@ -1132,11 +1133,15 @@ static void thread_lock_neon(int mode, i · int ne__ssl_init(void) { + OPENSSL_config(NULL); CRYPTO_malloc_init(); SSL_load_error_strings(); SSL_library_init(); + ENGINE_load_builtin_engines(); + ENGINE_register_all_complete(); OpenSSL_add_all_algorithms(); · Exactly what the documentation says you should do, there is either a bug in openssl or a bug in the documentation :-| -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.