summaryrefslogtreecommitdiff
path: root/source3/utils/net_rpc.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-01-02 05:32:07 +0000
committerAndrew Bartlett <abartlet@samba.org>2004-01-02 05:32:07 +0000
commitb4593e92ff75f006982d7f49337a0a94f44d4218 (patch)
tree98da29e0dd9f2da30173d3f61a54637c2d892ad2 /source3/utils/net_rpc.c
parent9f662094af4480b45db104a156374e7213aa5d92 (diff)
downloadsamba-b4593e92ff75f006982d7f49337a0a94f44d4218.tar.gz
samba-b4593e92ff75f006982d7f49337a0a94f44d4218.tar.bz2
samba-b4593e92ff75f006982d7f49337a0a94f44d4218.zip
JHT came up with a nasty (broken) torture case in preparing examples for
his book. This prompted me to look at the code that reads the unix group list. This code did a lot of name -> uid -> name -> sid translations, which caused problems. Instead, we now do just name->sid I also cleaned up some interfaces, and client tools. Andrew Bartlett (This used to be commit f9e59f8bc06fae7e5c8cb0980947f78942dc25c0)
Diffstat (limited to 'source3/utils/net_rpc.c')
-rw-r--r--source3/utils/net_rpc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c
index 04a0330774..b28365274c 100644
--- a/source3/utils/net_rpc.c
+++ b/source3/utils/net_rpc.c
@@ -1158,7 +1158,7 @@ rpc_group_members_internals(const DOM_SID *domain_sid, struct cli_state *cli,
if (!NT_STATUS_IS_OK(result))
goto done;
- do {
+ while (num_members > 0) {
int this_time = 512;
if (num_members < this_time)
@@ -1177,8 +1177,7 @@ rpc_group_members_internals(const DOM_SID *domain_sid, struct cli_state *cli,
num_members -= this_time;
group_rids += 512;
-
- } while (num_members > 0);
+ }
done:
return result;