Replaced OpenSSL_add_all_algorithms() with SSL_library_init() because it is no
longer present in openssl-0.9.8
+2006-02-19 Bobby <jborgdor at cs dot uu dot nl>
+ * Replaced deprecated function OpenSSL_add_all_algorithms() with
+ SSL_library_init(), because OpenSSL_add_all_algorithms() is no
+ longer present in openssl-0.9.8.
+
2005-10-25 Hugo Villeneuve <hugo@hugovil.com>
* Added a visual notification that a double-click has been detected.
SSL_METHOD *method;\r
SSL_CTX *ctx;\r
\r
- OpenSSL_add_all_algorithms(); /* Load cryptos, et.al. */\r
+ SSL_library_init(); /* Load cryptos, et.al. */\r
SSL_load_error_strings(); /* Bring in and register error messages */\r
method = SSLv2_client_method(); /* Create new client-method instance */\r
ctx = SSL_CTX_new(method); /* Create new context */\r