1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Remove now unused cli_get_pipe_name

(This used to be commit ed4a447103)
This commit is contained in:
Volker Lendecke 2008-07-20 18:48:44 +02:00
parent 346a8d1bdc
commit 303f98af2f
2 changed files with 2 additions and 8 deletions

View File

@ -7910,7 +7910,6 @@ 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(int pipe_idx);
const char *cli_get_pipe_name_from_iface(TALLOC_CTX *mem_ctx,
struct cli_state *cli,
const struct ndr_syntax_id *interface);

View File

@ -78,14 +78,9 @@ static const struct pipe_id_info {
};
/****************************************************************************
Return the pipe name from the index.
Return the pipe name from the interface.
****************************************************************************/
const char *cli_get_pipe_name(int pipe_idx)
{
return &pipe_names[pipe_idx].client_pipe[5];
}
const char *cli_get_pipe_name_from_iface(TALLOC_CTX *mem_ctx,
struct cli_state *cli,
const struct ndr_syntax_id *interface)
@ -94,7 +89,7 @@ const char *cli_get_pipe_name_from_iface(TALLOC_CTX *mem_ctx,
for (i = 0; pipe_names[i].client_pipe; i++) {
if (ndr_syntax_id_equal(pipe_names[i].abstr_syntax,
interface)) {
return cli_get_pipe_name(i);
return &pipe_names[i].client_pipe[5];
}
}