crypt32/tests: Fix a typo.

This commit is contained in:
Juan Lang 2009-11-20 14:30:29 -08:00 committed by Alexandre Julliard
parent 98de3950b1
commit 22206b909a
1 changed files with 2 additions and 2 deletions

View File

@ -1148,8 +1148,8 @@ static void testVerifyCRLRevocation(void)
CertFreeCRLContext(crl);
/* Check against CRL with different issuer and entry for the cert */
crl = CertCreateCRLContext(X509_ASN_ENCODING, v1CRLWithIssuerAndEntry,
sizeof(v1CRLWithIssuerAndEntry));
crl = CertCreateCRLContext(X509_ASN_ENCODING, crlWithDifferentIssuer,
sizeof(crlWithDifferentIssuer));
ok(crl != NULL, "CertCreateCRLContext failed: %08x\n", GetLastError());
ret = CertVerifyCRLRevocation(X509_ASN_ENCODING, cert->pCertInfo, 1,
(PCRL_INFO *)&crl->pCrlInfo);