diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-08 11:35:53 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-08 13:12:15 +0100 |
commit | 494b2aff8826947e3bd556aecb175746163da485 (patch) | |
tree | 55168d16ade6971be5de092305eb7a3016336820 /source3/include/proto.h | |
parent | 98fb71782e05ae72cd6abeb38b6e0b96a50c1761 (diff) | |
download | samba-494b2aff8826947e3bd556aecb175746163da485.tar.gz samba-494b2aff8826947e3bd556aecb175746163da485.tar.xz samba-494b2aff8826947e3bd556aecb175746163da485.zip |
s3: Do not reference ndr_table when calling rpc_srv_register
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 3d62e505b36..4f204d0c542 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -5819,9 +5819,8 @@ 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); -NTSTATUS rpc_srv_register(int version, const char *clnt, - const char *srv, - const struct ndr_interface_table *iface, +NTSTATUS rpc_srv_register(int version, const char *clnt, const char *srv, + const char *interface, uint32_t interface_version, const struct api_struct *cmds, int size); bool is_known_pipename(const char *cli_filename, struct ndr_syntax_id *syntax); bool api_pipe_bind_req(pipes_struct *p, prs_struct *rpc_in_p); |