mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/ossl_ocsp.c: OpenSSL::OCSP::OSCPError should be
subclass of OpenSSL::OpenSSLError. [ruby-dev:29980] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
542d9e97fc
commit
38093bc129
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat Dec 2 07:09:04 2006 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||
|
||||
* ext/openssl/ossl_ocsp.c: OpenSSL::OCSP::OSCPError should be
|
||||
subclass of OpenSSL::OpenSSLError. [ruby-dev:29980]
|
||||
|
||||
Fri Dec 1 16:31:53 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||
|
||||
* ext/tk/tcltklib.c: shouldn't run the killed thread at callback.
|
||||
|
|
|
@ -681,7 +681,7 @@ Init_ossl_ocsp()
|
|||
{
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue