From 053170613a5be40fb63f5620d546553646600622 Mon Sep 17 00:00:00 2001 From: Marco Oliverio Date: Fri, 5 Jul 2024 15:26:41 +0000 Subject: [PATCH] fixup! csrv2multi: pending ca list --- src/ocsp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ocsp.c b/src/ocsp.c index 9051ecf011..4760c50989 100644 --- a/src/ocsp.c +++ b/src/ocsp.c @@ -599,9 +599,9 @@ static int CheckOcspResponderChain(OcspEntry* single, DecodedCert *cert, } ca = GetCAByName(cm, ca->issuerNameHash); #if defined(HAVE_CERTIFICATE_STATUS_REQUEST_V2) - if (ca == NULL && pendingCAs != NULL) { - ca = findSignerByName(pendingCAs, single->issuerHash); - } + if (ca == NULL && pendingCAs != NULL) { + ca = findSignerByName(pendingCAs, single->issuerHash); + } #endif } return passed;