diff options
author | Günther Deschner <gd@samba.org> | 2008-02-14 15:28:26 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-14 15:28:26 +0100 |
commit | f21cdab938a0a94405d595bb80fbda724315d984 (patch) | |
tree | d3aa9a988cf87f1c662e849bffb4e924134d1e39 /source3/rpcclient | |
parent | 10462a5a795fe357c6487a85fedcb23adf8ab886 (diff) | |
download | samba-f21cdab938a0a94405d595bb80fbda724315d984.tar.gz samba-f21cdab938a0a94405d595bb80fbda724315d984.tar.xz samba-f21cdab938a0a94405d595bb80fbda724315d984.zip |
Use rpccli_lsa_RemoveAccountRights() in net and rpcclient.
Guenther
(This used to be commit 78200d88924bbef3df7185fc3a0e1753160a592f)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/cmd_lsarpc.c | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/source3/rpcclient/cmd_lsarpc.c b/source3/rpcclient/cmd_lsarpc.c index d7f5e55df4c..3fe8bc8e52e 100644 --- a/source3/rpcclient/cmd_lsarpc.c +++ b/source3/rpcclient/cmd_lsarpc.c @@ -816,8 +816,9 @@ static NTSTATUS cmd_lsa_remove_acct_rights(struct rpc_pipe_client *cli, { POLICY_HND dom_pol; NTSTATUS result = NT_STATUS_UNSUCCESSFUL; - + struct lsa_RightSet rights; DOM_SID sid; + int i; if (argc < 3 ) { printf("Usage: %s SID [rights...]\n", argv[0]); @@ -835,8 +836,22 @@ static NTSTATUS cmd_lsa_remove_acct_rights(struct rpc_pipe_client *cli, if (!NT_STATUS_IS_OK(result)) goto done; - result = rpccli_lsa_remove_account_rights(cli, mem_ctx, &dom_pol, sid, - False, argc-2, argv+2); + rights.count = argc-2; + rights.names = TALLOC_ARRAY(mem_ctx, struct lsa_StringLarge, + rights.count); + if (!rights.names) { + return NT_STATUS_NO_MEMORY; + } + + for (i=0; i<argc-2; i++) { + init_lsa_StringLarge(&rights.names[i], argv[i+2]); + } + + result = rpccli_lsa_RemoveAccountRights(cli, mem_ctx, + &dom_pol, + &sid, + false, + &rights); if (!NT_STATUS_IS_OK(result)) goto done; |