1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

Patch from Ronan Waide:

> when doing "enumdomusers", rpcclient prints each one preceded by the
> word "group" instead of "user"
(This used to be commit 0e9a2f41df)
This commit is contained in:
Martin Pool 2003-03-11 03:41:21 +00:00
parent 7da4263014
commit 4724780212

View File

@ -682,7 +682,7 @@ static NTSTATUS cmd_samr_enum_dom_groups(struct cli_state *cli,
NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES)) {
for (i = 0; i < num_dom_groups; i++)
printf("group:[%s] rid:[0x%x]\n",
printf("user:[%s] rid:[0x%x]\n",
dom_groups[i].acct_name,
dom_groups[i].rid);
}