diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-07 12:52:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:37 -0500 |
commit | 63b2fef51ec3d2e4a8eaddc85ebb1a1ddbf95031 (patch) | |
tree | 04c04476e35285caf955b822382419d566724923 /source4/librpc | |
parent | 930f9090ba44aba8ead7fef895033bd58d4f14f9 (diff) | |
download | samba-63b2fef51ec3d2e4a8eaddc85ebb1a1ddbf95031.tar.gz samba-63b2fef51ec3d2e4a8eaddc85ebb1a1ddbf95031.tar.bz2 samba-63b2fef51ec3d2e4a8eaddc85ebb1a1ddbf95031.zip |
r3600: fixed two debug typos
(This used to be commit d0149b173f70cf012e6ed2382394985fb4950af6)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/rpc/dcerpc_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index a717bdbc91..45345325b0 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -771,7 +771,7 @@ static NTSTATUS dcerpc_pipe_connect_ncacn_np(struct dcerpc_pipe **p, talloc_destroy(mem_ctx); return status; } - DEBUG(1,("Mapped to DCERPC/TCP pipe %s\n", binding->endpoint)); + DEBUG(1,("Mapped to DCERPC/NP pipe %s\n", binding->endpoint)); } pipe_name = binding->endpoint; @@ -867,7 +867,7 @@ static NTSTATUS dcerpc_pipe_connect_ncalrpc(struct dcerpc_pipe **p, talloc_destroy(mem_ctx); return status; } - DEBUG(1,("Mapped to DCERPC/TCP identifier %s\n", binding->endpoint)); + DEBUG(1,("Mapped to DCERPC/LRPC identifier %s\n", binding->endpoint)); } status = dcerpc_pipe_open_pipe(p, binding->endpoint); |