Module: wine Branch: master Commit: f1cb8057e71fccfb503d093df99ca686ed3191ea URL: http://source.winehq.org/git/wine.git/?a=commit;h=f1cb8057e71fccfb503d093df9...
Author: Juan Lang juan.lang@gmail.com Date: Tue Aug 14 14:29:41 2007 -0700
crypt32: Fix typo.
---
dlls/crypt32/store.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/crypt32/store.c b/dlls/crypt32/store.c index edf5e6c..d5e7734 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; }