crypt32/tests: Fix a typo.
This commit is contained in:
parent
98de3950b1
commit
22206b909a
|
@ -1148,8 +1148,8 @@ static void testVerifyCRLRevocation(void)
|
||||||
CertFreeCRLContext(crl);
|
CertFreeCRLContext(crl);
|
||||||
|
|
||||||
/* Check against CRL with different issuer and entry for the cert */
|
/* Check against CRL with different issuer and entry for the cert */
|
||||||
crl = CertCreateCRLContext(X509_ASN_ENCODING, v1CRLWithIssuerAndEntry,
|
crl = CertCreateCRLContext(X509_ASN_ENCODING, crlWithDifferentIssuer,
|
||||||
sizeof(v1CRLWithIssuerAndEntry));
|
sizeof(crlWithDifferentIssuer));
|
||||||
ok(crl != NULL, "CertCreateCRLContext failed: %08x\n", GetLastError());
|
ok(crl != NULL, "CertCreateCRLContext failed: %08x\n", GetLastError());
|
||||||
ret = CertVerifyCRLRevocation(X509_ASN_ENCODING, cert->pCertInfo, 1,
|
ret = CertVerifyCRLRevocation(X509_ASN_ENCODING, cert->pCertInfo, 1,
|
||||||
(PCRL_INFO *)&crl->pCrlInfo);
|
(PCRL_INFO *)&crl->pCrlInfo);
|
||||||
|
|
Loading…
Reference in New Issue