secur32: Implement CompleteAuthToken for NTLM.

oldstable
Kai Blin 2006-08-10 13:06:39 +02:00 committed by Alexandre Julliard
parent 753c8706f5
commit 4ff2d893c3
1 changed files with 5 additions and 11 deletions

View File

@ -898,18 +898,12 @@ static SECURITY_STATUS SEC_ENTRY ntlm_AcceptSecurityContext(
static SECURITY_STATUS SEC_ENTRY ntlm_CompleteAuthToken(PCtxtHandle phContext, static SECURITY_STATUS SEC_ENTRY ntlm_CompleteAuthToken(PCtxtHandle phContext,
PSecBufferDesc pToken) PSecBufferDesc pToken)
{ {
SECURITY_STATUS ret; /* We never need to call CompleteAuthToken anyway */
TRACE("%p %p\n", phContext, pToken); TRACE("%p %p\n", phContext, pToken);
if (phContext) if (!phContext)
{ return SEC_E_INVALID_HANDLE;
ret = SEC_E_UNSUPPORTED_FUNCTION;
} return SEC_E_OK;
else
{
ret = SEC_E_INVALID_HANDLE;
}
return ret;
} }
/*********************************************************************** /***********************************************************************