From c41b6e5c5e7fcdbd98c1eb2bea08378b47d343d4 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 24 May 2013 13:52:05 +0200 Subject: s3-rpc_cli: pass down ndr_interface_table to rpc_transport_np_init(). 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/rpc_client/cli_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpc_client/cli_pipe.c') diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index a378f51a84..1e296ee803 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -2779,7 +2779,7 @@ static NTSTATUS rpc_pipe_open_np(struct cli_state *cli, return NT_STATUS_NO_MEMORY; } - status = rpc_transport_np_init(result, cli, &table->syntax_id, + status = rpc_transport_np_init(result, cli, table, &result->transport); if (!NT_STATUS_IS_OK(status)) { TALLOC_FREE(result); -- cgit