mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
use constant instead of value to avoid further "hm?" from Alex
svn path=/trunk/; revision=37995
This commit is contained in:
@@ -1463,7 +1463,7 @@ LookupPrivilegeValueW(LPCWSTR SystemName,
|
||||
{
|
||||
if (0 == wcsicmp(PrivName, DefaultPrivNames[Priv]))
|
||||
{
|
||||
Luid->LowPart = Priv + 2;
|
||||
Luid->LowPart = Priv + SE_MIN_WELL_KNOWN_PRIVILEGE;
|
||||
Luid->HighPart = 0;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user