Commit 0605cf01 authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

secur32: Added DeleteSecurityContext.

parent cf2561b1
...@@ -1005,7 +1005,9 @@ static SECURITY_STATUS SEC_ENTRY ntlm_DeleteSecurityContext(PCtxtHandle phContex ...@@ -1005,7 +1005,9 @@ static SECURITY_STATUS SEC_ENTRY ntlm_DeleteSecurityContext(PCtxtHandle phContex
TRACE("%p\n", phContext); TRACE("%p\n", phContext);
if (phContext) if (phContext)
{ {
ret = SEC_E_UNSUPPORTED_FUNCTION; phContext->dwUpper = 0;
phContext->dwLower = 0;
ret = SEC_E_OK;
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment