mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
use constant instead of value to avoid further "hm?" from Alex
svn path=/trunk/; revision=37995
This commit is contained in:
parent
29b4de77bf
commit
8ab21576b5
1 changed files with 1 additions and 1 deletions
|
@ -1463,7 +1463,7 @@ LookupPrivilegeValueW(LPCWSTR SystemName,
|
||||||
{
|
{
|
||||||
if (0 == wcsicmp(PrivName, DefaultPrivNames[Priv]))
|
if (0 == wcsicmp(PrivName, DefaultPrivNames[Priv]))
|
||||||
{
|
{
|
||||||
Luid->LowPart = Priv + 2;
|
Luid->LowPart = Priv + SE_MIN_WELL_KNOWN_PRIVILEGE;
|
||||||
Luid->HighPart = 0;
|
Luid->HighPart = 0;
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue