diff options
author | Günther Deschner <gd@samba.org> | 2009-02-24 22:26:09 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-02-24 22:40:51 +0100 |
commit | 5ffa03dcd879e59f3e810fbb8833cb9a3e9afcca (patch) | |
tree | c8b0c56c34af3869998e8c4e0763b20654fb872a /source3/rpc_parse | |
parent | 3ceffcaa467d72890d6148f600ce7c2ddadb63d5 (diff) | |
download | samba-5ffa03dcd879e59f3e810fbb8833cb9a3e9afcca.tar.gz samba-5ffa03dcd879e59f3e810fbb8833cb9a3e9afcca.tar.bz2 samba-5ffa03dcd879e59f3e810fbb8833cb9a3e9afcca.zip |
s3-spoolss: remove old rpccli_spoolss_getprinterdriver wrapper.
Guenther
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_spoolss.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/source3/rpc_parse/parse_spoolss.c b/source3/rpc_parse/parse_spoolss.c index 435bb1bd80..4ffa121e1c 100644 --- a/source3/rpc_parse/parse_spoolss.c +++ b/source3/rpc_parse/parse_spoolss.c @@ -2051,33 +2051,6 @@ uint32 spoolss_size_printmonitor_info_2(PRINTMONITOR_2 *info) } /******************************************************************* - * init a structure. - ********************************************************************/ - -bool make_spoolss_q_getprinterdriver2(SPOOL_Q_GETPRINTERDRIVER2 *q_u, - const POLICY_HND *hnd, - const fstring architecture, - uint32 level, uint32 clientmajor, uint32 clientminor, - RPC_BUFFER *buffer, uint32 offered) -{ - if (q_u == NULL) - return False; - - memcpy(&q_u->handle, hnd, sizeof(q_u->handle)); - - init_buf_unistr2(&q_u->architecture, &q_u->architecture_ptr, architecture); - - q_u->level=level; - q_u->clientmajorversion=clientmajor; - q_u->clientminorversion=clientminor; - - q_u->buffer=buffer; - q_u->offered=offered; - - return True; -} - -/******************************************************************* * read a structure. * called from spoolss_getprinterdriver2 (srv_spoolss.c) ********************************************************************/ |