From b88803cbb3d7c68e5718143975ee5b23f7d1c8c4 Mon Sep 17 00:00:00 2001 From: Per Allansson Date: Fri, 3 May 2024 06:42:06 +0200 Subject: [PATCH] Fix formatting --- src/crl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/crl.c b/src/crl.c index 4c4ec8898e..0a61ba654c 100644 --- a/src/crl.c +++ b/src/crl.c @@ -438,7 +438,8 @@ static int CheckCertCRLList(WOLFSSL_CRL* crl, byte* issuerHash, byte* serial, serialHash, crle->totalCerts); if (ret != 0) break; - } else if (foundEntry == 0) { + } + else if (foundEntry == 0) { ret = ASN_AFTER_DATE_E; } }