mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:12:57 +00:00
Use _wcsicmp instead of non-standard wcsicmp
svn path=/trunk/; revision=38236
This commit is contained in:
parent
9b1a3eb696
commit
9483d7bc6c
1 changed files with 1 additions and 1 deletions
|
@ -1461,7 +1461,7 @@ LookupPrivilegeValueW(LPCWSTR SystemName,
|
||||||
|
|
||||||
for (Priv = 0; Priv < sizeof(DefaultPrivNames) / sizeof(DefaultPrivNames[0]); Priv++)
|
for (Priv = 0; Priv < sizeof(DefaultPrivNames) / sizeof(DefaultPrivNames[0]); Priv++)
|
||||||
{
|
{
|
||||||
if (0 == wcsicmp(PrivName, DefaultPrivNames[Priv]))
|
if (0 == _wcsicmp(PrivName, DefaultPrivNames[Priv]))
|
||||||
{
|
{
|
||||||
Luid->LowPart = Priv + SE_MIN_WELL_KNOWN_PRIVILEGE;
|
Luid->LowPart = Priv + SE_MIN_WELL_KNOWN_PRIVILEGE;
|
||||||
Luid->HighPart = 0;
|
Luid->HighPart = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue