diff options
author | Volker Lendecke <vl@samba.org> | 2010-01-31 15:38:16 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-01-31 15:40:59 +0100 |
commit | 0beac794b68388a197e19fbb49ae18345633dbd2 (patch) | |
tree | 36627e77b6c5d0292e5666937ff7042a4474555a /source3 | |
parent | 687e4eba3cced6015fdcaac2c6ba675cdebc1273 (diff) | |
download | samba-0beac794b68388a197e19fbb49ae18345633dbd2.tar.gz samba-0beac794b68388a197e19fbb49ae18345633dbd2.tar.bz2 samba-0beac794b68388a197e19fbb49ae18345633dbd2.zip |
s3: Fix some DEBUG messages
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_server/srv_lsa_hnd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/rpc_server/srv_lsa_hnd.c b/source3/rpc_server/srv_lsa_hnd.c index 695164679f..4348fb8d4a 100644 --- a/source3/rpc_server/srv_lsa_hnd.c +++ b/source3/rpc_server/srv_lsa_hnd.c @@ -109,7 +109,7 @@ bool init_pipe_handle_list(pipes_struct *p, const struct ndr_syntax_id *syntax) } ZERO_STRUCTP(hl); - DEBUG(10,("init_pipe_handles: created handle list for " + DEBUG(10,("init_pipe_handle_list: created handle list for " "pipe %s\n", get_pipe_name_from_syntax(talloc_tos(), syntax))); } @@ -126,8 +126,8 @@ bool init_pipe_handle_list(pipes_struct *p, const struct ndr_syntax_id *syntax) p->pipe_handles = hl; - DEBUG(10,("init_pipe_handles: pipe_handles ref count = %lu for pipe %s\n", - (unsigned long)p->pipe_handles->pipe_ref_count, + DEBUG(10,("init_pipe_handle_list: pipe_handles ref count = %lu for " + "pipe %s\n", (unsigned long)p->pipe_handles->pipe_ref_count, get_pipe_name_from_syntax(talloc_tos(), syntax))); return True; |