diff options
author | Günther Deschner <gd@samba.org> | 2008-02-01 12:03:00 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-01 12:30:25 +0100 |
commit | a3b00a3244d4c0368838312968e4875567ea6025 (patch) | |
tree | 90c646880056d7a798e3b9dd13471d0e0560d40a /source3/rpc_client | |
parent | 37b56c0113263a741c62100cd4b13388cb2a83fa (diff) | |
download | samba-a3b00a3244d4c0368838312968e4875567ea6025.tar.gz samba-a3b00a3244d4c0368838312968e4875567ea6025.tar.bz2 samba-a3b00a3244d4c0368838312968e4875567ea6025.zip |
Remove unused marshalling for SAMR_OPEN_USER.
Guenther
(This used to be commit f34c0e7ada8ce625ee20e3d776e41dabbad71ce5)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_samr.c | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/source3/rpc_client/cli_samr.c b/source3/rpc_client/cli_samr.c index 5e2f77e09d..c00a3c248b 100644 --- a/source3/rpc_client/cli_samr.c +++ b/source3/rpc_client/cli_samr.c @@ -95,44 +95,6 @@ NTSTATUS rpccli_samr_connect4(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, return result; } -NTSTATUS rpccli_samr_open_user(struct rpc_pipe_client *cli, - TALLOC_CTX *mem_ctx, - POLICY_HND *domain_pol, uint32 access_mask, - uint32 user_rid, POLICY_HND *user_pol) -{ - prs_struct qbuf, rbuf; - SAMR_Q_OPEN_USER q; - SAMR_R_OPEN_USER r; - NTSTATUS result = NT_STATUS_UNSUCCESSFUL; - - DEBUG(10,("cli_samr_open_user with rid 0x%x\n", user_rid )); - - ZERO_STRUCT(q); - ZERO_STRUCT(r); - - /* Marshall data and send request */ - - init_samr_q_open_user(&q, domain_pol, access_mask, user_rid); - - CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_OPEN_USER, - q, r, - qbuf, rbuf, - samr_io_q_open_user, - samr_io_r_open_user, - NT_STATUS_UNSUCCESSFUL); - - /* Return output parameters */ - - if (NT_STATUS_IS_OK(result = r.status)) { - *user_pol = r.user_pol; -#ifdef __INSURE__ - user_pol->marker = malloc(1); -#endif - } - - return result; -} - /* Create domain group */ NTSTATUS rpccli_samr_create_dom_group(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, |