mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/ossl_ssl.c (ossl_ssl_def_const): use INT2NUM because
OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG doesn't fit into Fixnum. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22916 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
50d1f54d4d
commit
a69f46bc2b
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Mar 12 22:14:01 2009 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/openssl/ossl_ssl.c (ossl_ssl_def_const): use INT2NUM because
|
||||
OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG doesn't fit into Fixnum.
|
||||
|
||||
Thu Mar 12 18:16:12 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* array.c, bignum.c, dln.c, error.c, gc.c, io.c, marshal.c,
|
||||
|
|
|
@ -1554,7 +1554,7 @@ Init_ossl_ssl()
|
|||
rb_define_method(cSSLSocket, "session=", ossl_ssl_set_session, 1);
|
||||
rb_define_method(cSSLSocket, "verify_result", ossl_ssl_get_verify_result, 0);
|
||||
|
||||
#define ossl_ssl_def_const(x) rb_define_const(mSSL, #x, INT2FIX(SSL_##x))
|
||||
#define ossl_ssl_def_const(x) rb_define_const(mSSL, #x, INT2NUM(SSL_##x))
|
||||
|
||||
ossl_ssl_def_const(VERIFY_NONE);
|
||||
ossl_ssl_def_const(VERIFY_PEER);
|
||||
|
|
Loading…
Reference in a new issue