summaryrefslogtreecommitdiffstats
path: root/crypto/asn1/t_req.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-05-01 18:29:59 +0000
committerBen Laurie <ben@openssl.org>1999-05-01 18:29:59 +0000
commitd35ea5b00b32eb30eaaffd3c5e504d6c003c17dc (patch)
treeb88a7b2510ac63d5c5fd733e5595a3347271402e /crypto/asn1/t_req.c
parentd500de16725216503786dba48db519d3031614e7 (diff)
Another stack.
Diffstat (limited to 'crypto/asn1/t_req.c')
-rw-r--r--crypto/asn1/t_req.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/t_req.c b/crypto/asn1/t_req.c
index b83684416d..bdd749436a 100644
--- a/crypto/asn1/t_req.c
+++ b/crypto/asn1/t_req.c
@@ -168,9 +168,9 @@ int X509_REQ_print(BIO *bp, X509_REQ *x)
if (a->set)
{
ii=0;
- count=sk_num(a->value.set);
+ count=sk_ASN1_TYPE_num(a->value.set);
get_next:
- at=(ASN1_TYPE *)sk_value(a->value.set,ii);
+ at=sk_ASN1_TYPE_value(a->value.set,ii);
type=at->type;
bs=at->value.asn1_string;
}