summaryrefslogtreecommitdiffstats
path: root/crypto/x509/x_crl.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-11-28 15:33:40 -0500
committerRich Salz <rsalz@openssl.org>2016-12-14 12:32:49 -0500
commit2b40699082d1e5d0e94811542c4f0633ab2d5989 (patch)
tree0b060db8db9bc46dbdb55eb286ace713949dd1f7 /crypto/x509/x_crl.c
parent99f2f1dc3e5c95961f57ca41e9fbb76863e69e46 (diff)
CRL critical extension bugfix
More importantly, port CRL test from boringSSL crypto/x509/x509_test.cc Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1775)
Diffstat (limited to 'crypto/x509/x_crl.c')
-rw-r--r--crypto/x509/x_crl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509/x_crl.c b/crypto/x509/x_crl.c
index a5871ca6e5..da9c6b6157 100644
--- a/crypto/x509/x_crl.c
+++ b/crypto/x509/x_crl.c
@@ -213,7 +213,7 @@ static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
if ((nid == NID_issuing_distribution_point)
|| (nid == NID_authority_key_identifier)
|| (nid == NID_delta_crl))
- break;;
+ continue;
crl->flags |= EXFLAG_CRITICAL;
break;
}