summaryrefslogtreecommitdiff
path: root/source3/rpc_client
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-02-09 15:00:49 +0100
committerGünther Deschner <gd@samba.org>2009-02-09 19:12:27 +0100
commita734c85c287ccf3280e7cefe69fae6b772b4ea8d (patch)
tree7f65cd8b6a9b5d5a05acb646712024c438b0fa81 /source3/rpc_client
parent3b4bf2f8a9c5150d03ea083e6db7d15035697806 (diff)
downloadsamba-a734c85c287ccf3280e7cefe69fae6b772b4ea8d.tar.gz
samba-a734c85c287ccf3280e7cefe69fae6b772b4ea8d.tar.bz2
samba-a734c85c287ccf3280e7cefe69fae6b772b4ea8d.zip
s3-spoolss: remove old rpccli_spoolss_routerreplyprinter.
Guenther
Diffstat (limited to 'source3/rpc_client')
-rw-r--r--source3/rpc_client/cli_spoolss_notify.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/source3/rpc_client/cli_spoolss_notify.c b/source3/rpc_client/cli_spoolss_notify.c
index 8e528eedd4..11152752e9 100644
--- a/source3/rpc_client/cli_spoolss_notify.c
+++ b/source3/rpc_client/cli_spoolss_notify.c
@@ -66,40 +66,6 @@ WERROR rpccli_spoolss_reply_open_printer(struct rpc_pipe_client *cli, TALLOC_CTX
}
/*********************************************************************
- This SPOOLSS_ROUTERREPLYPRINTER function is used to send a change
- notification event when the registration **did not** use
- SPOOL_NOTIFY_OPTION_TYPE structure to specify the events to monitor.
- Also see cli_spolss_reply_rrpcn()
- *********************************************************************/
-
-WERROR rpccli_spoolss_routerreplyprinter(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
- POLICY_HND *pol, uint32 condition, uint32 change_id)
-{
- prs_struct qbuf, rbuf;
- SPOOL_Q_ROUTERREPLYPRINTER q;
- SPOOL_R_ROUTERREPLYPRINTER r;
- WERROR result = W_ERROR(ERRgeneral);
-
- /* Initialise input parameters */
-
- make_spoolss_q_routerreplyprinter(&q, pol, condition, change_id);
-
- /* Marshall data and send request */
-
- CLI_DO_RPC_WERR( cli, mem_ctx, &syntax_spoolss, SPOOLSS_ROUTERREPLYPRINTER,
- q, r,
- qbuf, rbuf,
- spoolss_io_q_routerreplyprinter,
- spoolss_io_r_routerreplyprinter,
- WERR_GENERAL_FAILURE );
-
- /* Return output parameters */
-
- result = r.status;
- return result;
-}
-
-/*********************************************************************
This SPOOLSS_REPLY_RRPCN function is used to send a change
notification event when the registration **did** use
SPOOL_NOTIFY_OPTION_TYPE structure to specify the events to monitor