diff options
author | Günther Deschner <gd@samba.org> | 2013-05-17 16:16:59 +0200 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2013-08-05 10:29:59 +0200 |
commit | 9b4fb5b074b035eaef98c4a463c9d68006ed52da (patch) | |
tree | 53231f75a33dffa7c83f12754e70af7688b71d55 /source3/librpc | |
parent | 0ce2178f2ffeaee324c7e8fef7c87727def7bd77 (diff) | |
download | samba-9b4fb5b074b035eaef98c4a463c9d68006ed52da.tar.gz samba-9b4fb5b074b035eaef98c4a463c9d68006ed52da.tar.bz2 samba-9b4fb5b074b035eaef98c4a463c9d68006ed52da.zip |
s3-rpc_cli: pass down ndr_interface_table to rpc_pipe_open_ncalrpc().
Guenther
Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/rpc/dcerpc_ep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/librpc/rpc/dcerpc_ep.c b/source3/librpc/rpc/dcerpc_ep.c index bb080c5fdd..410caa7732 100644 --- a/source3/librpc/rpc/dcerpc_ep.c +++ b/source3/librpc/rpc/dcerpc_ep.c @@ -365,7 +365,7 @@ static NTSTATUS ep_register(TALLOC_CTX *mem_ctx, status = rpc_pipe_open_ncalrpc(tmp_ctx, ncalrpc_sock, - &ndr_table_epmapper.syntax_id, + &ndr_table_epmapper, &cli); if (!NT_STATUS_IS_OK(status)) { goto done; |