diff options
author | Volker Lendecke <vl@samba.org> | 2008-07-12 23:17:23 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-07-16 23:19:48 +0200 |
commit | e0f3ea2cbeb61cb02be85d2b315948985bac27a8 (patch) | |
tree | 8d6806f82cd2a72db4cea879a9f0309dbf650d32 /source3/include | |
parent | e65ea7471e2447ed150ade9a2c4f0a67663fb8d2 (diff) | |
download | samba-e0f3ea2cbeb61cb02be85d2b315948985bac27a8.tar.gz samba-e0f3ea2cbeb61cb02be85d2b315948985bac27a8.tar.xz samba-e0f3ea2cbeb61cb02be85d2b315948985bac27a8.zip |
In api_pipe_bind_req(), check for the iface id, not the pipe name
This requires to store the rpc_interface in "struct rpc_table"
(This used to be commit 654f8de8497aff29f9b1f1822b6a8e734ff329e0)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 246a3b75be9..03d203b96e3 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -8809,7 +8809,10 @@ bool setup_fault_pdu(pipes_struct *p, NTSTATUS status); bool setup_cancel_ack_reply(pipes_struct *p, prs_struct *rpc_in_p); bool check_bind_req(struct pipes_struct *p, RPC_IFACE* abstract, RPC_IFACE* transfer, uint32 context_id); -NTSTATUS rpc_pipe_register_commands(int version, const char *clnt, const char *srv, const struct api_struct *cmds, int size); +NTSTATUS rpc_pipe_register_commands(int version, const char *clnt, + const char *srv, + const struct ndr_syntax_id *interface, + const struct api_struct *cmds, int size); bool api_pipe_bind_req(pipes_struct *p, prs_struct *rpc_in_p); bool api_pipe_alter_context(pipes_struct *p, prs_struct *rpc_in_p); bool api_pipe_ntlmssp_auth_process(pipes_struct *p, prs_struct *rpc_in, |