[#29736] [提案] Kernel#p をもっと便利に — "Yusuke ENDOH" <mame@...>

遠藤侑介と申します。

19 messages 2006/11/01

[#29765] merge with YARV — SASADA Koichi <ko1@...>

 ささだです。

16 messages 2006/11/03

[#29767] 1.8 proposal of RUBY_PATCHLEVEL — URABE Shyouhei <root@...>

-----BEGIN PGP SIGNED MESSAGE-----

52 messages 2006/11/04
[#29771] Re: 1.8 proposal of RUBY_PATCHLEVEL — Shugo Maeda <shugo@...> 2006/11/04

前田です。

[#29925] ruby -v — Urabe Shyouhei <shyouhei@...>

卜部です。

28 messages 2006/11/24

[#29964] 1.8, 1.9, svn化, などなどのまとめ — "U.Nakamura" <usa@...>

こんにちは、なかむら(う)です。

15 messages 2006/11/28

[#29970] BUG: Incorrect handling of Ignorecase matching (regex.c of 1.8.5) — "きむらこういち" <hogemuta@...>

木村です。

15 messages 2006/11/28

[ruby-dev:29980] OCSPError.superclass is Object

From: sheepman <sheepman@...>
Date: 2006-11-30 13:18:09 UTC
List: ruby-dev #29980
こんばんは、sheepman です。
リファレンスの整備作業をしていて気付いたのですが、
openssl の OpenSSL::OCSP::OCSPError の親クラスが
Object になっています。OpenSSL::OpenSSLError が
正しいんだと思います。

$ ruby-1.9 -ropenssl -ve 'p OpenSSL::OCSP::OCSPError.superclass'
ruby 1.9.0 (2006-11-26 patchlevel 0) [i686-linux]
Object

$ cvs diff -u ossl_ocsp.c
Index: ossl_ocsp.c
===================================================================
RCS file: /src/ruby/ext/openssl/ossl_ocsp.c,v
retrieving revision 1.8
diff -u -r1.8 ossl_ocsp.c
--- ossl_ocsp.c 2 Sep 2006 14:40:50 -0000       1.8
+++ ossl_ocsp.c 30 Nov 2006 13:14:49 -0000
@@ -681,7 +681,7 @@
 {
     mOCSP = rb_define_module_under(mOSSL, "OCSP");

-    eOCSPError = rb_define_class_under(mOCSP, "OCSPError", rb_cObject);
+    eOCSPError = rb_define_class_under(mOCSP, "OCSPError", eOSSLError);

     cOCSPReq = rb_define_class_under(mOCSP, "Request", rb_cObject);
     rb_define_alloc_func(cOCSPReq, ossl_ocspreq_alloc);


-- 
sheepman / TAMURA Takashi
sheepman@sheepman.sakura.ne.jp

In This Thread

Prev Next