mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
[NETAPI32]
NetUserGetLocalGroups: Fix a typo that broke the enumeration of account aliases. svn path=/trunk/; revision=60099
This commit is contained in:
parent
1f1d1b19dc
commit
e66dc8a754
1 changed files with 1 additions and 1 deletions
|
@ -3118,7 +3118,7 @@ NetUserGetLocalGroups(LPCWSTR servername,
|
||||||
|
|
||||||
for (i = 0; i < AccountMemberCount; i++)
|
for (i = 0; i < AccountMemberCount; i++)
|
||||||
{
|
{
|
||||||
if (BuiltinNames[i].Length > 0)
|
if (AccountNames[i].Length > 0)
|
||||||
{
|
{
|
||||||
Size += (sizeof(LOCALGROUP_USERS_INFO_0) + AccountNames[i].Length + sizeof(UNICODE_NULL));
|
Size += (sizeof(LOCALGROUP_USERS_INFO_0) + AccountNames[i].Length + sizeof(UNICODE_NULL));
|
||||||
Count++;
|
Count++;
|
||||||
|
|
Loading…
Reference in a new issue