diff options
author | Volker Lendecke <vl@samba.org> | 2008-07-21 12:49:50 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-07-21 14:36:31 +0200 |
commit | bd479ced46af51d7661b5015821f5237779c4366 (patch) | |
tree | 823abbfab083d4b454149e1bd8fbecd14dd26cb7 | |
parent | abce3cdf56e635465e3c5f0bf7340e101c743ed2 (diff) | |
download | samba-bd479ced46af51d7661b5015821f5237779c4366.tar.gz samba-bd479ced46af51d7661b5015821f5237779c4366.tar.bz2 samba-bd479ced46af51d7661b5015821f5237779c4366.zip |
Remove a reference to pipe_idx
(This used to be commit e949b9d11f439c32c85a3cd9ae4c1a859a4c284a)
-rw-r--r-- | source3/rpc_client/ndr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/rpc_client/ndr.c b/source3/rpc_client/ndr.c index 91751a2d71..4f1ef029c8 100644 --- a/source3/rpc_client/ndr.c +++ b/source3/rpc_client/ndr.c @@ -35,7 +35,8 @@ NTSTATUS cli_do_rpc_ndr(struct rpc_pipe_client *cli, NTSTATUS status; enum ndr_err_code ndr_err; - SMB_ASSERT(rpccli_is_pipe_idx(cli, p_idx)); + SMB_ASSERT(ndr_syntax_id_equal(&table->syntax_id, + &cli->abstract_syntax)); SMB_ASSERT(table->num_calls > opnum); call = &table->calls[opnum]; |