diff options
author | Günther Deschner <gd@samba.org> | 2009-03-14 02:22:59 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-03-17 11:57:17 +0100 |
commit | 4234969df7fa973ee798bb656883a75d794006d6 (patch) | |
tree | 8a1dee230b39a051042e9d4d1aaf6262ba727480 /source3/rpc_client | |
parent | b8a3e5ea0c8cc6b6b3ad6eda088673e1c8027caf (diff) | |
download | samba-4234969df7fa973ee798bb656883a75d794006d6.tar.gz samba-4234969df7fa973ee798bb656883a75d794006d6.tar.xz samba-4234969df7fa973ee798bb656883a75d794006d6.zip |
s3-spoolss: remove old rpccli_spoolss_setprinterdata wrapper.
Guenther
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_spoolss.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/source3/rpc_client/cli_spoolss.c b/source3/rpc_client/cli_spoolss.c index 3f8e9668de9..d7458dc1dd2 100644 --- a/source3/rpc_client/cli_spoolss.c +++ b/source3/rpc_client/cli_spoolss.c @@ -753,32 +753,6 @@ WERROR rpccli_spoolss_getprinterdata(struct rpc_pipe_client *cli, /********************************************************************** **********************************************************************/ -WERROR rpccli_spoolss_setprinterdata(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, - POLICY_HND *hnd, REGISTRY_VALUE *value) -{ - prs_struct qbuf, rbuf; - SPOOL_Q_SETPRINTERDATA in; - SPOOL_R_SETPRINTERDATA out; - - ZERO_STRUCT(in); - ZERO_STRUCT(out); - - make_spoolss_q_setprinterdata( &in, hnd, value->valuename, - value->type, (char *)value->data_p, value->size); - - CLI_DO_RPC_WERR( cli, mem_ctx, &syntax_spoolss, SPOOLSS_SETPRINTERDATA, - in, out, - qbuf, rbuf, - spoolss_io_q_setprinterdata, - spoolss_io_r_setprinterdata, - WERR_GENERAL_FAILURE ); - - return out.status; -} - -/********************************************************************** -**********************************************************************/ - WERROR rpccli_spoolss_enumprinterdata(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, POLICY_HND *hnd, uint32 ndx, uint32 value_offered, uint32 data_offered, |