SeUnsolicitedInputPrivilege is obsolete - the LUID is used by SE_MACHINE_ACCOUNT_PRIVILEGE now

svn path=/trunk/; revision=37955
This commit is contained in:
Christoph von Wittich 2008-12-09 08:33:26 +00:00
parent cb7b9ef083
commit 185cda7129

View file

@ -1424,7 +1424,6 @@ LookupPrivilegeValueW(LPCWSTR SystemName,
L"SeAssignPrimaryTokenPrivilege",
L"SeLockMemoryPrivilege",
L"SeIncreaseQuotaPrivilege",
L"SeUnsolicitedInputPrivilege",
L"SeMachineAccountPrivilege",
L"SeTcbPrivilege",
L"SeSecurityPrivilege",
@ -1464,7 +1463,7 @@ LookupPrivilegeValueW(LPCWSTR SystemName,
{
if (0 == wcsicmp(PrivName, DefaultPrivNames[Priv]))
{
Luid->LowPart = Priv + 1;
Luid->LowPart = Priv + 2;
Luid->HighPart = 0;
return TRUE;
}