mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
Missed another condition on a while loop.
(This used to be commit 8ff52aec87
)
This commit is contained in:
parent
e4e1bface8
commit
91f650fb5b
@ -1016,7 +1016,7 @@ rpc_group_list_internals(const DOM_SID *domain_sid, struct cli_state *cli,
|
||||
else
|
||||
printf("%s\n", groups[i].acct_name);
|
||||
}
|
||||
} while (!NT_STATUS_IS_OK(result));
|
||||
} while (NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES));
|
||||
|
||||
done:
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user