summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ext/openssl/ossl.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 893f46f427..dcdd5fb5b0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Oct 12 12:52:57 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
+
+ * ext/openssl/ossl.c (Init_openssl): should call
+ OpenSSL_add_ssl_algorithms().
+
Wed Oct 12 11:08:54 2005 WATANABE Hirofumi <eban@ruby-lang.org>
* file.c (rb_f_test): typo in RDoc comments.
diff --git a/ext/openssl/ossl.c b/ext/openssl/ossl.c
index 2ad2ee38d0..b7eb79f053 100644
--- a/ext/openssl/ossl.c
+++ b/ext/openssl/ossl.c
@@ -382,6 +382,7 @@ Init_openssl()
*/
/* CRYPTO_malloc_init(); */
/* ENGINE_load_builtin_engines(); */
+ OpenSSL_add_ssl_algorithms();
OpenSSL_add_all_algorithms();
ERR_load_crypto_strings();
SSL_load_error_strings();