diff options
author | Volker Lendecke <vl@samba.org> | 2008-04-20 11:45:41 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-04-20 11:47:33 +0200 |
commit | f56eedb95c64593ceff0ef91b99729c5071aa7ac (patch) | |
tree | 2a44ac5504213b9480fad4ca7e5e5b5716090cba /source3/rpc_parse | |
parent | ff8aa642f34f95cb85d4b9a65e01b4fe0efe5384 (diff) | |
download | samba-f56eedb95c64593ceff0ef91b99729c5071aa7ac.tar.gz samba-f56eedb95c64593ceff0ef91b99729c5071aa7ac.tar.xz samba-f56eedb95c64593ceff0ef91b99729c5071aa7ac.zip |
Remove the pipe_idx variable from rpc_pipe_client
(This used to be commit 4840febcd481563c3d9b2fabc1fe1b2ae5a76cf6)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_rpc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_rpc.c b/source3/rpc_parse/parse_rpc.c index 6b6e1424e0..893eb57808 100644 --- a/source3/rpc_parse/parse_rpc.c +++ b/source3/rpc_parse/parse_rpc.c @@ -252,7 +252,8 @@ static bool smb_io_rpc_hdr_bba(const char *desc, RPC_HDR_BBA *rpc, prs_struct * Note the transfer pointer must remain valid until this is marshalled. ********************************************************************/ -void init_rpc_context(RPC_CONTEXT *rpc_ctx, uint16 context_id, RPC_IFACE *abstract, RPC_IFACE *transfer) +void init_rpc_context(RPC_CONTEXT *rpc_ctx, uint16 context_id, + const RPC_IFACE *abstract, const RPC_IFACE *transfer) { rpc_ctx->context_id = context_id ; /* presentation context identifier (0x0) */ rpc_ctx->num_transfer_syntaxes = 1 ; /* the number of syntaxes (has always been 1?)(0x1) */ |