crypt32: Fix debug channel for PFX functions.

This commit is contained in:
Juan Lang 2009-01-29 02:07:20 -08:00 committed by Alexandre Julliard
parent 2d42f291c8
commit 3fd732b25b
1 changed files with 2 additions and 2 deletions

View File

@ -5516,7 +5516,7 @@ BOOL WINAPI PFXIsPFXBlob(CRYPT_DATA_BLOB *pPFX)
{ {
BOOL ret; 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 /* 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 * 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, HCERTSTORE WINAPI PFXImportCertStore(CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword,
DWORD dwFlags) DWORD dwFlags)
{ {
FIXME("(%p, %p, %08x): stub\n", pPFX, szPassword, dwFlags); FIXME_(crypt)("(%p, %p, %08x): stub\n", pPFX, szPassword, dwFlags);
return NULL; return NULL;
} }