diff options
author | Günther Deschner <gd@samba.org> | 2008-02-05 11:23:04 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-05 13:19:47 +0100 |
commit | a9333427d0e783f1de95f31b0f3a99c871816f07 (patch) | |
tree | b20b58f6bb2725bf32326c5b76f1e106d1ceffee /source3/rpc_client | |
parent | fc681ec58151285ed02cbbeb4544e4f3d643b03d (diff) | |
download | samba-a9333427d0e783f1de95f31b0f3a99c871816f07.tar.gz samba-a9333427d0e783f1de95f31b0f3a99c871816f07.tar.bz2 samba-a9333427d0e783f1de95f31b0f3a99c871816f07.zip |
Remove unused marshalling for SAMR_REMOVE_SID_FOREIGN_DOMAIN.
Guenther
(This used to be commit 2e2b80bd03133dcf7a9c8a54f60eba7d07b7038a)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_samr.c | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/source3/rpc_client/cli_samr.c b/source3/rpc_client/cli_samr.c index 97013c914e..21e44e014b 100644 --- a/source3/rpc_client/cli_samr.c +++ b/source3/rpc_client/cli_samr.c @@ -1113,38 +1113,3 @@ NTSTATUS rpccli_samr_set_userinfo2(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ return result; } - -/* Remove foreign SID */ - -NTSTATUS rpccli_samr_remove_sid_foreign_domain(struct rpc_pipe_client *cli, - TALLOC_CTX *mem_ctx, - POLICY_HND *user_pol, - DOM_SID *sid) -{ - prs_struct qbuf, rbuf; - SAMR_Q_REMOVE_SID_FOREIGN_DOMAIN q; - SAMR_R_REMOVE_SID_FOREIGN_DOMAIN r; - NTSTATUS result = NT_STATUS_UNSUCCESSFUL; - - DEBUG(10,("cli_samr_remove_sid_foreign_domain\n")); - - ZERO_STRUCT(q); - ZERO_STRUCT(r); - - /* Marshall data and send request */ - - init_samr_q_remove_sid_foreign_domain(&q, user_pol, sid); - - CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_REMOVE_SID_FOREIGN_DOMAIN, - q, r, - qbuf, rbuf, - samr_io_q_remove_sid_foreign_domain, - samr_io_r_remove_sid_foreign_domain, - NT_STATUS_UNSUCCESSFUL); - - /* Return output parameters */ - - result = r.status; - - return result; -} |