summaryrefslogtreecommitdiffstats
path: root/source/rpc_client
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-02-19 02:30:53 +0100
committerGünther Deschner <gd@samba.org>2008-02-19 03:12:37 +0100
commit57e03a7fd56062bbff19c88c3b6928e8a0481794 (patch)
tree7f8ac4e29a91716eb5763a06b5f653a49b8317de /source/rpc_client
parent5ca4358c1a2c13b316df7cc07d8ca5b820c79988 (diff)
downloadsamba-57e03a7fd56062bbff19c88c3b6928e8a0481794.tar.gz
samba-57e03a7fd56062bbff19c88c3b6928e8a0481794.tar.xz
samba-57e03a7fd56062bbff19c88c3b6928e8a0481794.zip
Remove unused marshalling for SVCCTL_START_SERVICE.
Guenther
Diffstat (limited to 'source/rpc_client')
-rw-r--r--source/rpc_client/cli_svcctl.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/source/rpc_client/cli_svcctl.c b/source/rpc_client/cli_svcctl.c
index cdd1b93aaa4..9889d131f33 100644
--- a/source/rpc_client/cli_svcctl.c
+++ b/source/rpc_client/cli_svcctl.c
@@ -233,35 +233,6 @@ WERROR rpccli_svcctl_query_config(struct rpc_pipe_client *cli, TALLOC_CTX *mem_c
/*******************************************************************
*******************************************************************/
-WERROR rpccli_svcctl_start_service( struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
- POLICY_HND *hService,
- const char **parm_array, uint32 parmcount )
-{
- SVCCTL_Q_START_SERVICE in;
- SVCCTL_R_START_SERVICE out;
- prs_struct qbuf, rbuf;
-
- ZERO_STRUCT(in);
- ZERO_STRUCT(out);
-
- memcpy( &in.handle, hService, sizeof(POLICY_HND) );
-
- in.parmcount = 0;
- in.parameters = NULL;
-
- CLI_DO_RPC_WERR( cli, mem_ctx, PI_SVCCTL, SVCCTL_START_SERVICE_W,
- in, out,
- qbuf, rbuf,
- svcctl_io_q_start_service,
- svcctl_io_r_start_service,
- WERR_GENERAL_FAILURE );
-
- return out.status;
-}
-
-/*******************************************************************
-*******************************************************************/
-
WERROR rpccli_svcctl_control_service( struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
POLICY_HND *hService, uint32 control,
SERVICE_STATUS *status )