summaryrefslogtreecommitdiff
path: root/source3/rpc_client/cli_spoolss.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-02-09 01:33:16 +0100
committerGünther Deschner <gd@samba.org>2009-02-09 12:34:02 +0100
commit8b5729f31c4c64640a764f8081deb59349964db0 (patch)
tree36b5bdc021d9197ca1186d398425c0a076e7f08e /source3/rpc_client/cli_spoolss.c
parent1c0b19fef68e865238aef80ca0ef55f40417d5a6 (diff)
downloadsamba-8b5729f31c4c64640a764f8081deb59349964db0.tar.gz
samba-8b5729f31c4c64640a764f8081deb59349964db0.tar.bz2
samba-8b5729f31c4c64640a764f8081deb59349964db0.zip
s3-spoolss: remove old _spoolss_DeletePrinterKey.
Guenther
Diffstat (limited to 'source3/rpc_client/cli_spoolss.c')
-rw-r--r--source3/rpc_client/cli_spoolss.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/source3/rpc_client/cli_spoolss.c b/source3/rpc_client/cli_spoolss.c
index 8fc93c21df..a0fb10bda2 100644
--- a/source3/rpc_client/cli_spoolss.c
+++ b/source3/rpc_client/cli_spoolss.c
@@ -1734,29 +1734,4 @@ WERROR rpccli_spoolss_enumprinterkey(struct rpc_pipe_client *cli, TALLOC_CTX *me
return out.status;
}
-/**********************************************************************
-**********************************************************************/
-
-WERROR rpccli_spoolss_deleteprinterkey(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
- POLICY_HND *hnd, char *keyname)
-{
- prs_struct qbuf, rbuf;
- SPOOL_Q_DELETEPRINTERKEY in;
- SPOOL_R_DELETEPRINTERKEY out;
-
- ZERO_STRUCT(in);
- ZERO_STRUCT(out);
-
- make_spoolss_q_deleteprinterkey( &in, hnd, keyname );
-
- CLI_DO_RPC_WERR( cli, mem_ctx, &syntax_spoolss, SPOOLSS_DELETEPRINTERKEY,
- in, out,
- qbuf, rbuf,
- spoolss_io_q_deleteprinterkey,
- spoolss_io_r_deleteprinterkey,
- WERR_GENERAL_FAILURE );
-
- return out.status;
-}
-
/** @} **/