diff options
author | Günther Deschner <gd@samba.org> | 2008-11-14 23:59:39 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-02-06 18:59:06 +0100 |
commit | 88f09a8353597b72885838dfdc61b7631ae0192f (patch) | |
tree | c6b3b5b92818772b8afd800f0cfed2fa2b5c6204 /source3/rpc_client | |
parent | 0bd5698dabdf8a408e21c5261a688dd2599af3cf (diff) | |
download | samba-88f09a8353597b72885838dfdc61b7631ae0192f.tar.gz samba-88f09a8353597b72885838dfdc61b7631ae0192f.tar.bz2 samba-88f09a8353597b72885838dfdc61b7631ae0192f.zip |
s3-spoolss: remove old _spoolss_ClosePrinter.
Guenther
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_spoolss.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/source3/rpc_client/cli_spoolss.c b/source3/rpc_client/cli_spoolss.c index 30a707f943..68420de43b 100644 --- a/source3/rpc_client/cli_spoolss.c +++ b/source3/rpc_client/cli_spoolss.c @@ -482,31 +482,6 @@ WERROR rpccli_spoolss_open_printer_ex(struct rpc_pipe_client *cli, TALLOC_CTX *m /********************************************************************** **********************************************************************/ -WERROR rpccli_spoolss_close_printer(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, - POLICY_HND *pol) -{ - prs_struct qbuf, rbuf; - SPOOL_Q_CLOSEPRINTER in; - SPOOL_R_CLOSEPRINTER out; - - ZERO_STRUCT(in); - ZERO_STRUCT(out); - - make_spoolss_q_closeprinter( &in, pol ); - - CLI_DO_RPC_WERR( cli, mem_ctx, &syntax_spoolss, SPOOLSS_CLOSEPRINTER, - in, out, - qbuf, rbuf, - spoolss_io_q_closeprinter, - spoolss_io_r_closeprinter, - WERR_GENERAL_FAILURE ); - - return out.status; -} - -/********************************************************************** -**********************************************************************/ - WERROR rpccli_spoolss_enum_printers(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, char *name, uint32 flags, uint32 level, uint32 *num_printers, PRINTER_INFO_CTR *ctr) |