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

* ext/openssl/ruby_missing.c: rid of unnecessary backward

compatibility stuff. and remove DEFINE_ALLOC_WRAPPER from
  all sources.

* ext/openssl/ossl_x509ext.c (X509::Extension.new): new method.

* ext/openssl/ossl_x509ext.c (X509::Extension#oid=): new method.

* ext/openssl/ossl_x509ext.c (X509::Extension#value=): new method.

* ext/openssl/ossl_x509ext.c (X509::Extension#critical=): new method.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gotoyuzo 2003-09-06 08:56:09 +00:00
parent dc29af2a06
commit 256d273e69
17 changed files with 102 additions and 37 deletions

View file

@ -98,7 +98,6 @@ ossl_ocspreq_alloc(VALUE klass)
return obj;
}
DEFINE_ALLOC_WRAPPER(ossl_ocspreq_alloc)
static VALUE
ossl_ocspreq_initialize(int argc, VALUE *argv, VALUE self)
@ -304,7 +303,6 @@ ossl_ocspres_alloc(VALUE klass)
return obj;
}
DEFINE_ALLOC_WRAPPER(ossl_ocspreq_alloc)
static VALUE
ossl_ocspres_initialize(int argc, VALUE *argv, VALUE self)
@ -395,7 +393,6 @@ ossl_ocspbres_alloc(VALUE klass)
return obj;
}
DEFINE_ALLOC_WRAPPER(ossl_ocspbres_alloc)
static VALUE
ossl_ocspbres_initialize(int argc, VALUE *argv, VALUE self)
@ -617,7 +614,6 @@ ossl_ocspcid_alloc(VALUE klass)
return obj;
}
DEFINE_ALLOC_WRAPPER(ossl_ocspcid_alloc)
static VALUE
ossl_ocspcid_initialize(VALUE self, VALUE subject, VALUE issuer)