From 93e92faca9c99cd91878c2f48fb244233b16aa0f Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 17 May 2013 16:02:59 +0200 Subject: s3-net: pass down ndr_interface_table to connect_dst_pipe(). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Guenther Signed-off-by: Günther Deschner Reviewed-by: Stefan Metzmacher Reviewed-by: Andreas Schneider --- source3/utils/net_rpc_printer.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/utils/net_rpc_printer.c') diff --git a/source3/utils/net_rpc_printer.c b/source3/utils/net_rpc_printer.c index 9743d08e0c..3ed97a778e 100644 --- a/source3/utils/net_rpc_printer.c +++ b/source3/utils/net_rpc_printer.c @@ -1577,7 +1577,7 @@ NTSTATUS rpc_printer_migrate_security_internals(struct net_context *c, /* connect destination PI_SPOOLSS */ nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst, - &ndr_table_spoolss.syntax_id); + &ndr_table_spoolss); if (!NT_STATUS_IS_OK(nt_status)) { return nt_status; } @@ -1729,7 +1729,7 @@ NTSTATUS rpc_printer_migrate_forms_internals(struct net_context *c, /* connect destination PI_SPOOLSS */ nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst, - &ndr_table_spoolss.syntax_id); + &ndr_table_spoolss); if (!NT_STATUS_IS_OK(nt_status)) { return nt_status; } @@ -1906,7 +1906,7 @@ 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, - &ndr_table_spoolss.syntax_id); + &ndr_table_spoolss); if (!NT_STATUS_IS_OK(nt_status)) { return nt_status; } @@ -2125,7 +2125,7 @@ NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c, /* connect destination PI_SPOOLSS */ nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst, - &ndr_table_spoolss.syntax_id); + &ndr_table_spoolss); if (!NT_STATUS_IS_OK(nt_status)) { return nt_status; } @@ -2300,7 +2300,7 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c, /* connect destination PI_SPOOLSS */ nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst, - &ndr_table_spoolss.syntax_id); + &ndr_table_spoolss); if (!NT_STATUS_IS_OK(nt_status)) { return nt_status; } -- cgit