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_parse | |
parent | b8a3e5ea0c8cc6b6b3ad6eda088673e1c8027caf (diff) | |
download | samba-4234969df7fa973ee798bb656883a75d794006d6.tar.gz samba-4234969df7fa973ee798bb656883a75d794006d6.tar.bz2 samba-4234969df7fa973ee798bb656883a75d794006d6.zip |
s3-spoolss: remove old rpccli_spoolss_setprinterdata wrapper.
Guenther
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_spoolss.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/source3/rpc_parse/parse_spoolss.c b/source3/rpc_parse/parse_spoolss.c index a7d69f67ef..e683507c4a 100644 --- a/source3/rpc_parse/parse_spoolss.c +++ b/source3/rpc_parse/parse_spoolss.c @@ -420,21 +420,6 @@ bool make_spoolss_q_enumprinterdataex(SPOOL_Q_ENUMPRINTERDATAEX *q_u, /******************************************************************* ********************************************************************/ -bool make_spoolss_q_setprinterdata(SPOOL_Q_SETPRINTERDATA *q_u, const POLICY_HND *hnd, - char* value, uint32 data_type, char* data, uint32 data_size) -{ - memcpy(&q_u->handle, hnd, sizeof(q_u->handle)); - q_u->type = data_type; - init_unistr2(&q_u->value, value, UNI_STR_TERMINATE); - - q_u->max_len = q_u->real_len = data_size; - q_u->data = (unsigned char *)data; - - return True; -} - -/******************************************************************* -********************************************************************/ bool spoolss_io_q_setprinterdata(const char *desc, SPOOL_Q_SETPRINTERDATA *q_u, prs_struct *ps, int depth) { |