fixup! csrv2multi: pending ca list

This commit is contained in:
Marco Oliverio
2024-07-05 15:26:41 +00:00
parent 3e58cfd864
commit 053170613a

View File

@@ -599,9 +599,9 @@ static int CheckOcspResponderChain(OcspEntry* single, DecodedCert *cert,
} }
ca = GetCAByName(cm, ca->issuerNameHash); ca = GetCAByName(cm, ca->issuerNameHash);
#if defined(HAVE_CERTIFICATE_STATUS_REQUEST_V2) #if defined(HAVE_CERTIFICATE_STATUS_REQUEST_V2)
if (ca == NULL && pendingCAs != NULL) { if (ca == NULL && pendingCAs != NULL) {
ca = findSignerByName(pendingCAs, single->issuerHash); ca = findSignerByName(pendingCAs, single->issuerHash);
} }
#endif #endif
} }
return passed; return passed;