diff options
author | Volker Lendecke <vl@samba.org> | 2009-02-01 00:30:04 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-02-01 14:34:22 +0100 |
commit | 57de60a83f3f88566d356547eb20a6f0569f76ec (patch) | |
tree | acdc73ad43f6a115ef07c767f87ace3f60551cd8 /source3/include | |
parent | dba6624dca024d144b0adb1016d17d176d38b735 (diff) | |
download | samba-57de60a83f3f88566d356547eb20a6f0569f76ec.tar.gz samba-57de60a83f3f88566d356547eb20a6f0569f76ec.tar.bz2 samba-57de60a83f3f88566d356547eb20a6f0569f76ec.zip |
cli_get_pipe_name_from_interface does not really need a talloc_ctx
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index fd556690aa..6a97d81a61 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -5852,8 +5852,7 @@ bool prs_data_blob(prs_struct *prs, DATA_BLOB *blob, TALLOC_CTX *mem_ctx); /* The following definitions come from rpc_parse/parse_rpc.c */ -const char *cli_get_pipe_name_from_iface(TALLOC_CTX *mem_ctx, - const struct ndr_syntax_id *interface); +const char *get_pipe_name_from_iface(const struct ndr_syntax_id *interface); void init_rpc_hdr(RPC_HDR *hdr, enum RPC_PKT_TYPE pkt_type, uint8 flags, uint32 call_id, int data_len, int auth_len); bool smb_io_rpc_hdr(const char *desc, RPC_HDR *rpc, prs_struct *ps, int depth); |