sspicli: Implement SspiFreeAuthIdentity.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
20ba0b08a9
commit
30d2813829
|
@ -122,3 +122,12 @@ SECURITY_STATUS SEC_ENTRY SspiEncodeAuthIdentityAsStrings(
|
|||
|
||||
return SEC_E_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SspiFreeAuthIdentity (SECUR32.0)
|
||||
*/
|
||||
void SEC_ENTRY SspiFreeAuthIdentity( PSEC_WINNT_AUTH_IDENTITY_OPAQUE opaque_id )
|
||||
{
|
||||
TRACE( "%p\n", opaque_id );
|
||||
HeapFree( GetProcessHeap(), 0, opaque_id );
|
||||
}
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
@ stub SspiEncryptAuthIdentity
|
||||
@ stub SspiEncryptAuthIdentityEx
|
||||
@ stub SspiExcludePackage
|
||||
@ stub SspiFreeAuthIdentity
|
||||
@ stdcall SspiFreeAuthIdentity(ptr)
|
||||
@ stub SspiGetComputerNameForSPN
|
||||
@ stub SspiGetTargetHostName
|
||||
@ stub SspiIsAuthIdentityEncrypted
|
||||
|
|
Loading…
Reference in New Issue