diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-02-20 15:15:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:42 -0500 |
commit | dc0ec444833be678c5f8cdcf861a46ebe3d2955c (patch) | |
tree | ef9920152c90ce4397d3da1846d96eb8d70e52a2 /source3/rpcclient | |
parent | 0d63de34ba497a882e2be76188280ee465149658 (diff) | |
download | samba-dc0ec444833be678c5f8cdcf861a46ebe3d2955c.tar.gz samba-dc0ec444833be678c5f8cdcf861a46ebe3d2955c.tar.bz2 samba-dc0ec444833be678c5f8cdcf861a46ebe3d2955c.zip |
r5471: In cli_samr_lookup_rids, flags is not a flags but an array size. W2k3 rejects
everything but 1000 here, so there's no point in exposing that to the caller.
Thanks,
Volker
(This used to be commit 03ec1bd9e54b065c0494bc57a3d78ac0ae28e234)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/cmd_samr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/rpcclient/cmd_samr.c b/source3/rpcclient/cmd_samr.c index e8ddfd32d7..d3f8954050 100644 --- a/source3/rpcclient/cmd_samr.c +++ b/source3/rpcclient/cmd_samr.c @@ -1394,7 +1394,6 @@ static NTSTATUS cmd_samr_lookup_rids(struct cli_state *cli, { NTSTATUS result = NT_STATUS_UNSUCCESSFUL; POLICY_HND connect_pol, domain_pol; - uint32 flags = 0x000003e8; /* Unknown */ uint32 num_rids, num_names, *rids, *name_types; char **names; int i; @@ -1427,8 +1426,7 @@ static NTSTATUS cmd_samr_lookup_rids(struct cli_state *cli, for (i = 0; i < argc - 1; i++) sscanf(argv[i + 1], "%i", &rids[i]); - result = cli_samr_lookup_rids(cli, mem_ctx, &domain_pol, - flags, num_rids, rids, + result = cli_samr_lookup_rids(cli, mem_ctx, &domain_pol, num_rids, rids, &num_names, &names, &name_types); if (!NT_STATUS_IS_OK(result) && |