From f1cb8057e71fccfb503d093df99ca686ed3191ea Mon Sep 17 00:00:00 2001 From: Juan Lang Date: Tue, 14 Aug 2007 14:29:41 -0700 Subject: [PATCH] crypt32: Fix typo. --- dlls/crypt32/store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/crypt32/store.c b/dlls/crypt32/store.c index edf5e6c09b4..d5e7734aca5 100644 --- a/dlls/crypt32/store.c +++ b/dlls/crypt32/store.c @@ -819,7 +819,7 @@ static void *CRYPT_ProvEnumCRL(PWINECRYPT_CERTSTORE store, void *pPrev) /* same dirty trick: replace the returned context's hCertStore with * store. */ - ((PCERT_CONTEXT)ret)->hCertStore = store; + ((PCRL_CONTEXT)ret)->hCertStore = store; } return ret; }