[LSASRV] Fix a typo in the trusted user identification

This commit is contained in:
Eric Kohl 2021-02-28 01:57:43 +01:00
parent 95188553ba
commit 76247390e5

View File

@ -138,7 +138,7 @@ LsapCheckLogonProcess(PLSA_API_MSG RequestMsg,
Context->Untrusted = RequestMsg->ConnectInfo.Untrusted;
if (Context->Untrusted == FALSE)
Context->Untrusted = LsapIsTrustedClient(ProcessHandle);
Context->Untrusted = !LsapIsTrustedClient(ProcessHandle);
*LogonContext = Context;