From 4fe70c78129284a5a5a192029a51d953d3a2473b Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Mon, 24 Mar 2003 16:57:08 +0000 Subject: [PATCH] Get X509_V_FLAG_CRL_CHECK_ALL logic the right way round. PR:544 --- crypto/x509/x509_vfy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/x509/x509_vfy.c b/crypto/x509/x509_vfy.c index 552d1e725..f60054bd3 100644 --- a/crypto/x509/x509_vfy.c +++ b/crypto/x509/x509_vfy.c @@ -453,9 +453,9 @@ static int check_revocation(X509_STORE_CTX *ctx) if (!(ctx->flags & X509_V_FLAG_CRL_CHECK)) return 1; if (ctx->flags & X509_V_FLAG_CRL_CHECK_ALL) - last = 0; - else last = sk_X509_num(ctx->chain) - 1; + else + last = 0; for(i = 0; i <= last; i++) { ctx->error_depth = i;