Module: wine Branch: master Commit: 22206b909a836505eefda401b8687e550d364b53 URL: http://source.winehq.org/git/wine.git/?a=commit;h=22206b909a836505eefda401b8...
Author: Juan Lang juan.lang@gmail.com Date: Fri Nov 20 14:30:29 2009 -0800
crypt32/tests: Fix a typo.
---
dlls/crypt32/tests/crl.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/crypt32/tests/crl.c b/dlls/crypt32/tests/crl.c index 4a96a46..5ae6bf6 100644 --- a/dlls/crypt32/tests/crl.c +++ b/dlls/crypt32/tests/crl.c @@ -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);