Commit 22206b90 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32/tests: Fix a typo.

parent 98de3950
...@@ -1148,8 +1148,8 @@ static void testVerifyCRLRevocation(void) ...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment