diff options
author | Günther Deschner <gd@samba.org> | 2013-05-24 13:44:00 +0200 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2013-08-05 10:30:00 +0200 |
commit | 5c5cff0a722a0925ae75ea7aa11ede0d82d5b92d (patch) | |
tree | 7669999a340655b4864ed17036a09c20c84a4ec6 /source3/torture | |
parent | 8cd3a060514ddcc178c938100edfb0b177c00c8c (diff) | |
download | samba-5c5cff0a722a0925ae75ea7aa11ede0d82d5b92d.tar.gz samba-5c5cff0a722a0925ae75ea7aa11ede0d82d5b92d.tar.bz2 samba-5c5cff0a722a0925ae75ea7aa11ede0d82d5b92d.zip |
s3-rpc_cli: pass down ndr_interface_table to rpc_pipe_open_tcp().
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/torture')
-rw-r--r-- | source3/torture/rpc_open_tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/rpc_open_tcp.c b/source3/torture/rpc_open_tcp.c index d29f4cfbee..cd27b5ff20 100644 --- a/source3/torture/rpc_open_tcp.c +++ b/source3/torture/rpc_open_tcp.c @@ -95,7 +95,7 @@ int main(int argc, const char **argv) } status = rpc_pipe_open_tcp(mem_ctx, argv[2], NULL, - &((*table)->syntax_id), + *table, &rpc_pipe); if (!NT_STATUS_IS_OK(status)) { d_printf("ERROR calling rpc_pipe_open_tcp(): %s\n", |