aboutsummaryrefslogtreecommitdiffstats
path: root/ossl_x509revoked.c
diff options
context:
space:
mode:
authorMichal Rokos <m.rokos@sh.cvut.cz>2002-06-13 13:17:00 +0000
committerMichal Rokos <m.rokos@sh.cvut.cz>2002-06-13 13:17:00 +0000
commit284239ee3bcf350ba296e3f6e85fa905411c09cd (patch)
treea5da11f5e71497cf3703385e22ee8cfdb7b3ed45 /ossl_x509revoked.c
parentc49eac7eb457c202473ebe94a81f560ccc551503 (diff)
downloadruby-openssl-history-284239ee3bcf350ba296e3f6e85fa905411c09cd.tar.gz
Drop OSSL_Check_Type (Use OSSL_Check_Kind where needed)
Diffstat (limited to 'ossl_x509revoked.c')
-rw-r--r--ossl_x509revoked.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ossl_x509revoked.c b/ossl_x509revoked.c
index c083cf1..19271e3 100644
--- a/ossl_x509revoked.c
+++ b/ossl_x509revoked.c
@@ -184,7 +184,7 @@ ossl_x509revoked_set_extensions(VALUE self, VALUE ary)
Check_Type(ary, T_ARRAY);
for (i=0; i<RARRAY(ary)->len; i++) {
- OSSL_Check_Type(RARRAY(ary)->ptr[i], cX509Ext);
+ OSSL_Check_Kind(RARRAY(ary)->ptr[i], cX509Ext);
}
sk_X509_EXTENSION_pop_free(rev->extensions, X509_EXTENSION_free);