summaryrefslogtreecommitdiffstats
path: root/ossl_x509req.c
diff options
context:
space:
mode:
authorMichal Rokos <m.rokos@sh.cvut.cz>2002-07-10 16:00:34 +0000
committerMichal Rokos <m.rokos@sh.cvut.cz>2002-07-10 16:00:34 +0000
commit4b46a79ab310189f1132d42de104de05033a4512 (patch)
treec3ce83a252ce1b8b885f9651419656c1544abaf0 /ossl_x509req.c
parent725257c6028ff642b0bcbc0ab30781bfe310393c (diff)
downloadruby-openssl-history-4b46a79ab310189f1132d42de104de05033a4512.tar.gz
Fix lookup CRLs during #verify when CRL is added
Diffstat (limited to 'ossl_x509req.c')
-rw-r--r--ossl_x509req.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ossl_x509req.c b/ossl_x509req.c
index 6bb6843..851a1e7 100644
--- a/ossl_x509req.c
+++ b/ossl_x509req.c
@@ -318,7 +318,7 @@ ossl_x509req_get_attributes(VALUE self)
count = X509_REQ_get_attr_count(req);
if (count < 0) {
- rb_warning("count < 0???");
+ OSSL_Debug("count < 0???");
return rb_ary_new();
}
ary = rb_ary_new2(count);