1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s3-rpc_server: Remove unused variable pipes_open.

This commit is contained in:
Andreas Schneider 2011-05-31 11:35:39 +02:00
parent f086057ce8
commit 4640d908f7

View File

@ -38,8 +38,6 @@
#undef DBGC_CLASS #undef DBGC_CLASS
#define DBGC_CLASS DBGC_RPC_SRV #define DBGC_CLASS DBGC_RPC_SRV
static int pipes_open;
static struct pipes_struct *InternalPipes; static struct pipes_struct *InternalPipes;
/* TODO /* TODO
@ -188,8 +186,8 @@ struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
/* add to the list of open contexts */ /* add to the list of open contexts */
DLIST_ADD(p->contexts, context_fns); DLIST_ADD(p->contexts, context_fns);
DEBUG(4,("Created internal pipe %s (pipes_open=%d)\n", DEBUG(4,("Created internal pipe %s\n",
get_pipe_name_from_syntax(talloc_tos(), syntax), pipes_open)); get_pipe_name_from_syntax(talloc_tos(), syntax)));
talloc_set_destructor(p, close_internal_rpc_pipe_hnd); talloc_set_destructor(p, close_internal_rpc_pipe_hnd);