secur32: Trace values of SCHANNEL_CRED structure.

This commit is contained in:
Juan Lang 2009-08-05 15:13:33 -07:00 committed by Alexandre Julliard
parent c689451cd1
commit 570c57ac95
1 changed files with 15 additions and 0 deletions

View File

@ -288,6 +288,21 @@ static SECURITY_STATUS SEC_ENTRY schan_QueryCredentialsAttributesW(
static SECURITY_STATUS schan_CheckCreds(const SCHANNEL_CRED *schanCred)
{
SECURITY_STATUS st;
DWORD i;
TRACE("dwVersion = %d\n", schanCred->dwVersion);
TRACE("cCreds = %d\n", schanCred->cCreds);
TRACE("hRootStore = %p\n", schanCred->hRootStore);
TRACE("cMappers = %d\n", schanCred->cMappers);
TRACE("cSupportedAlgs = %d:\n", schanCred->cSupportedAlgs);
for (i = 0; i < schanCred->cSupportedAlgs; i++)
TRACE("%08x\n", schanCred->palgSupportedAlgs[i]);
TRACE("grbitEnabledProtocols = %08x\n", schanCred->grbitEnabledProtocols);
TRACE("dwMinimumCipherStrength = %d\n", schanCred->dwMinimumCipherStrength);
TRACE("dwMaximumCipherStrength = %d\n", schanCred->dwMaximumCipherStrength);
TRACE("dwSessionLifespan = %d\n", schanCred->dwSessionLifespan);
TRACE("dwFlags = %08x\n", schanCred->dwFlags);
TRACE("dwCredFormat = %d\n", schanCred->dwCredFormat);
switch (schanCred->dwVersion)
{