summaryrefslogtreecommitdiffstats
path: root/source3/rpc_client/cli_spoolss.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-02-25 14:27:30 +0100
committerGünther Deschner <gd@samba.org>2009-02-25 15:10:46 +0100
commitb6457c78d61992f12903ed0966d9d1608de68da8 (patch)
treeaf1891f3dacc4d8d7ad7d330c725863a3422e93b /source3/rpc_client/cli_spoolss.c
parent2bd8cacf0e5ed6965f5791c4a86320d4978d9b15 (diff)
downloadsamba-b6457c78d61992f12903ed0966d9d1608de68da8.tar.gz
samba-b6457c78d61992f12903ed0966d9d1608de68da8.tar.xz
samba-b6457c78d61992f12903ed0966d9d1608de68da8.zip
s3-spoolss: remove unused decode_printer_info_7.
Guenther
Diffstat (limited to 'source3/rpc_client/cli_spoolss.c')
-rw-r--r--source3/rpc_client/cli_spoolss.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/source3/rpc_client/cli_spoolss.c b/source3/rpc_client/cli_spoolss.c
index c9d23efdf26..4c1d57e063f 100644
--- a/source3/rpc_client/cli_spoolss.c
+++ b/source3/rpc_client/cli_spoolss.c
@@ -362,38 +362,6 @@ static bool decode_printer_info_3(TALLOC_CTX *mem_ctx, RPC_BUFFER *buffer,
/**********************************************************************
**********************************************************************/
-static bool decode_printer_info_7(TALLOC_CTX *mem_ctx, RPC_BUFFER *buffer,
- uint32 returned, PRINTER_INFO_7 **info)
-{
- uint32 i;
- PRINTER_INFO_7 *inf;
-
- if (returned) {
- inf=TALLOC_ARRAY(mem_ctx, PRINTER_INFO_7, returned);
- if (!inf) {
- return False;
- }
- memset(inf, 0, returned*sizeof(PRINTER_INFO_7));
- } else {
- inf = NULL;
- }
-
- prs_set_offset(&buffer->prs,0);
-
- for (i=0; i<returned; i++) {
- if (!smb_io_printer_info_7("", buffer, &inf[i], 0)) {
- return False;
- }
- }
-
- *info=inf;
- return True;
-}
-
-
-/**********************************************************************
-**********************************************************************/
-
static bool decode_port_info_1(TALLOC_CTX *mem_ctx, RPC_BUFFER *buffer,
uint32 returned, PORT_INFO_1 **info)
{