summaryrefslogtreecommitdiff
path: root/source3/utils/net_rpc_printer.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-07-20 18:44:32 +0200
committerVolker Lendecke <vl@samba.org>2008-07-21 14:36:28 +0200
commit05cc3fda05ced80828d8a7bbc00674c495bf46d3 (patch)
treecc0e54e0cc63366c6f38d38552cfdba00980fe8b /source3/utils/net_rpc_printer.c
parentd86ff599892608cf739c96e8add9b6ff9f9e5e43 (diff)
downloadsamba-05cc3fda05ced80828d8a7bbc00674c495bf46d3.tar.gz
samba-05cc3fda05ced80828d8a7bbc00674c495bf46d3.tar.bz2
samba-05cc3fda05ced80828d8a7bbc00674c495bf46d3.zip
Refactoring: connect_dst_pipe uses ndr_syntax_id instead of pipe_idx
(This used to be commit 0f77746f36b98acc5171727fa3fc236af9fd2000)
Diffstat (limited to 'source3/utils/net_rpc_printer.c')
-rw-r--r--source3/utils/net_rpc_printer.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/source3/utils/net_rpc_printer.c b/source3/utils/net_rpc_printer.c
index fd938cbeaa..f4b305d4ab 100644
--- a/source3/utils/net_rpc_printer.c
+++ b/source3/utils/net_rpc_printer.c
@@ -1434,7 +1434,8 @@ NTSTATUS rpc_printer_migrate_security_internals(struct net_context *c,
DEBUG(3,("copying printer ACLs\n"));
/* connect destination PI_SPOOLSS */
- nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst, PI_SPOOLSS);
+ nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
+ &syntax_spoolss);
if (!NT_STATUS_IS_OK(nt_status))
return nt_status;
@@ -1596,7 +1597,8 @@ NTSTATUS rpc_printer_migrate_forms_internals(struct net_context *c,
DEBUG(3,("copying forms\n"));
/* connect destination PI_SPOOLSS */
- nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst, PI_SPOOLSS);
+ nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
+ &syntax_spoolss);
if (!NT_STATUS_IS_OK(nt_status))
return nt_status;
@@ -1786,7 +1788,8 @@ NTSTATUS rpc_printer_migrate_drivers_internals(struct net_context *c,
DEBUG(3,("copying printer-drivers\n"));
- nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst, PI_SPOOLSS);
+ nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
+ &syntax_spoolss);
if (!NT_STATUS_IS_OK(nt_status))
return nt_status;
@@ -2007,7 +2010,8 @@ NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c,
DEBUG(3,("copying printers\n"));
/* connect destination PI_SPOOLSS */
- nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst, PI_SPOOLSS);
+ nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
+ &syntax_spoolss);
if (!NT_STATUS_IS_OK(nt_status))
return nt_status;
@@ -2177,7 +2181,8 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
DEBUG(3,("copying printer settings\n"));
/* connect destination PI_SPOOLSS */
- nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst, PI_SPOOLSS);
+ nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
+ &syntax_spoolss);
if (!NT_STATUS_IS_OK(nt_status))
return nt_status;