summaryrefslogtreecommitdiff
path: root/source3/rpc_client
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-01-14 17:16:06 +0100
committerGünther Deschner <gd@samba.org>2008-01-14 17:16:06 +0100
commit862e1685b8b4f0ec76b5f715d39781e0fd8fa4f0 (patch)
treef737dad2415a3994e3bab66855442dffb89bced4 /source3/rpc_client
parent003694b4a7b9844c2b210c3b40efb57dd8d96c0e (diff)
downloadsamba-862e1685b8b4f0ec76b5f715d39781e0fd8fa4f0.tar.gz
samba-862e1685b8b4f0ec76b5f715d39781e0fd8fa4f0.tar.bz2
samba-862e1685b8b4f0ec76b5f715d39781e0fd8fa4f0.zip
Remove old lsa set info policy call.
Guenther (This used to be commit b37b2b77edec72fc3f53b3461aa1c210e4366c1b)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r--source3/rpc_client/cli_lsarpc.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c
index a023fe75ef..77ade5cba1 100644
--- a/source3/rpc_client/cli_lsarpc.c
+++ b/source3/rpc_client/cli_lsarpc.c
@@ -716,41 +716,6 @@ NTSTATUS rpccli_lsa_query_info_policy2(struct rpc_pipe_client *cli,
return result;
}
-NTSTATUS rpccli_lsa_set_info_policy(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
- POLICY_HND *pol, uint16 info_class,
- LSA_INFO_CTR ctr)
-{
- prs_struct qbuf, rbuf;
- LSA_Q_SET_INFO q;
- LSA_R_SET_INFO r;
- NTSTATUS result;
-
- ZERO_STRUCT(q);
- ZERO_STRUCT(r);
-
- init_q_set(&q, pol, info_class, ctr);
-
- CLI_DO_RPC(cli, mem_ctx, PI_LSARPC, LSA_SETINFOPOLICY,
- q, r,
- qbuf, rbuf,
- lsa_io_q_set,
- lsa_io_r_set,
- NT_STATUS_UNSUCCESSFUL);
-
- result = r.status;
-
- if (!NT_STATUS_IS_OK(result)) {
- goto done;
- }
-
- /* Return output parameters */
-
- done:
-
- return result;
-}
-
-
/**
* Enumerate list of trusted domains
*