crypt32/tests: Fix a typo.
authorJuan Lang <juan.lang@gmail.com>
Fri, 20 Nov 2009 22:30:29 +0000 (14:30 -0800)
committerAlexander Morozov <amorozov@etersoft.ru>
Thu, 1 Jul 2010 13:18:16 +0000 (17:18 +0400)
dlls/crypt32/tests/crl.c

index 4a96a4661099fc564c76a8eb9219aed29942d0ba..5ae6bf656d51a280f6a397465fff618d7ddb210c 100644 (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);