1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/openssl/ossl_pkey_ec.c (ossl_ec_key_get_group): get rid of

warning. we are aware of it.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2007-04-06 01:58:01 +00:00
parent 406389a9f3
commit 31088109b7
2 changed files with 6 additions and 4 deletions

View file

@ -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.

View file

@ -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;