Juan Lang : crypt32: Fix debug channel for PFX functions.

Alexandre Julliard julliard at winehq.org
Fri Jan 30 07:58:11 CST 2009


Module: wine
Branch: master
Commit: 3fd732b25b819b17e619b6d767974bfc36c783ba
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3fd732b25b819b17e619b6d767974bfc36c783ba

Author: Juan Lang <juan.lang at gmail.com>
Date:   Thu Jan 29 02:07:20 2009 -0800

crypt32: Fix debug channel for PFX functions.

---

 dlls/crypt32/decode.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/crypt32/decode.c b/dlls/crypt32/decode.c
index f353131..cda8b62 100644
--- a/dlls/crypt32/decode.c
+++ b/dlls/crypt32/decode.c
@@ -5516,7 +5516,7 @@ BOOL WINAPI PFXIsPFXBlob(CRYPT_DATA_BLOB *pPFX)
 {
     BOOL ret;
 
-    TRACE("(%p)\n", pPFX);
+    TRACE_(crypt)("(%p)\n", pPFX);
 
     /* A PFX blob is an asn.1-encoded sequence, consisting of at least a
      * version integer of length 1 (3 encoded byes) and at least one other
@@ -5550,6 +5550,6 @@ BOOL WINAPI PFXIsPFXBlob(CRYPT_DATA_BLOB *pPFX)
 HCERTSTORE WINAPI PFXImportCertStore(CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword,
  DWORD dwFlags)
 {
-    FIXME("(%p, %p, %08x): stub\n", pPFX, szPassword, dwFlags);
+    FIXME_(crypt)("(%p, %p, %08x): stub\n", pPFX, szPassword, dwFlags);
     return NULL;
 }




More information about the wine-cvs mailing list