diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-05-11 09:31:27 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-05-11 09:31:27 +0000 |
commit | 7c2544547fb84f8c3d56865a1e0b07c8530e9eb2 (patch) | |
tree | 5dcc401fbc877470ea154e668ffbf4ec109159a5 /ext/openssl/ossl_cipher.c | |
parent | a50dd8ebd3b0b26ffe66ae98afc74bca9678d605 (diff) | |
download | ruby-7c2544547fb84f8c3d56865a1e0b07c8530e9eb2.tar.gz ruby-7c2544547fb84f8c3d56865a1e0b07c8530e9eb2.tar.xz ruby-7c2544547fb84f8c3d56865a1e0b07c8530e9eb2.zip |
* ext/openssl/ossl_cipher.c (add_cipher_name_to_ary): should return
value. [ruby-dev:28627]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_cipher.c')
-rw-r--r-- | ext/openssl/ossl_cipher.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/openssl/ossl_cipher.c b/ext/openssl/ossl_cipher.c index c6df2bc79..f0f29bd17 100644 --- a/ext/openssl/ossl_cipher.c +++ b/ext/openssl/ossl_cipher.c @@ -121,6 +121,7 @@ static void* add_cipher_name_to_ary(const OBJ_NAME *name, VALUE ary) { rb_ary_push(ary, rb_str_new2(name->name)); + return NULL; } static VALUE |