mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[LSASRV] Fix a typo in the trusted user identification
This commit is contained in:
parent
95188553ba
commit
76247390e5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue