diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ext/openssl/ossl_pkey_ec.c | 2 |
2 files changed, 6 insertions, 4 deletions
@@ -1,9 +1,13 @@ +Fri Apr 6 10:56:29 2007 NAKAMURA Usaku <usa@ruby-lang.org> + + * ext/openssl/ossl_pkey_ec.c (ossl_ec_key_get_group): get rid of + warning. we are aware of it. + Fri Apr 6 04:00:24 2007 Technorama Ltd. <oss-ruby@technorama.net> * ext/openssl/ossl_{bn,x509{attr,cert,name,store}}.c: Add documentation. - Thu Apr 5 17:59:19 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> * compile.c (defined_expr): support for assignment. @@ -27,7 +31,6 @@ Thu Apr 5 14:58:49 2007 Technorama Ltd. <oss-ruby@technorama.net> * ext/openssl/ossl_{pkcs7,pkcs12}.c: Add documentation. - Thu Apr 5 00:42:48 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> * error.c (rb_notimplement), io.c (pipe_open): removed definite @@ -86,7 +89,6 @@ Mon Apr 3 07:10:12 2007 Technorama Ltd. <oss-ruby@technorama.net> New SSL::Session class. Add session cb's, getter/setters, config, and statistics methods. - Mon Apr 3 04:00:23 2007 Technorama Ltd. <oss-ruby@technorama.net> * ext/openssl/{ossl.[ch],ossl_pkey.c} Add documentation. diff --git a/ext/openssl/ossl_pkey_ec.c b/ext/openssl/ossl_pkey_ec.c index 5f00fc001..18a1db102 100644 --- a/ext/openssl/ossl_pkey_ec.c +++ b/ext/openssl/ossl_pkey_ec.c @@ -249,7 +249,7 @@ static VALUE ossl_ec_key_get_group(VALUE self) if (!NIL_P(group_v)) return group_v; - if ((group = EC_KEY_get0_group(ec)) != NULL) { + if ((group = (EC_GROUP *)EC_KEY_get0_group(ec)) != NULL) { group_v = rb_obj_alloc(cEC_GROUP); SafeGet_ec_group(group_v, ec_group); ec_group->group = group; |