secur32: Downgrade WARN to TRACE, fix another TRACE.

This commit is contained in:
Kai Blin 2007-05-26 01:11:46 +02:00 committed by Alexandre Julliard
parent 5f8d15027e
commit c1e724bc88
1 changed files with 3 additions and 2 deletions

View File

@ -608,7 +608,8 @@ static SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextW(
if(pInput->pBuffers[input_token_idx].cbBuffer > max_len)
{
TRACE("pInput->pBuffers[0].cbBuffer is: %ld\n",
TRACE("pInput->pBuffers[%d].cbBuffer is: %ld\n",
input_token_idx,
pInput->pBuffers[input_token_idx].cbBuffer);
ret = SEC_E_INVALID_TOKEN;
goto isc_end;
@ -657,7 +658,7 @@ static SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextW(
if (!pOutput || ((token_idx = ntlm_GetTokenBufferIndex(pOutput)) == -1))
{
WARN("no SECBUFFER_TOKEN buffer could be found\n");
TRACE("no SECBUFFER_TOKEN buffer could be found\n");
ret = SEC_E_BUFFER_TOO_SMALL;
goto isc_end;
}