diff options
| author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-12 03:56:04 +0000 |
|---|---|---|
| committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-12 03:56:04 +0000 |
| commit | ab9837bcc2b335280452257aa669c23ff1b1fff0 (patch) | |
| tree | 0af54ad48d7d17280e3461635cbb454dab130046 | |
| parent | af2c580b4a828eda1bc75cc4e2ae527c14ce1c55 (diff) | |
| download | ruby-ab9837bcc2b335280452257aa669c23ff1b1fff0.tar.gz ruby-ab9837bcc2b335280452257aa669c23ff1b1fff0.tar.xz ruby-ab9837bcc2b335280452257aa669c23ff1b1fff0.zip | |
* ext/openssl/ossl.c (Init_openssl): should call OpenSSL_add_ssl_algorithms().
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9381 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ext/openssl/ossl.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -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 2ad2ee38d..b7eb79f05 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(); |
