summaryrefslogtreecommitdiffstats
path: root/source3/modules
diff options
context:
space:
mode:
authorRichard Sharpe <rsharpe@samba.org>2015-01-24 15:24:46 -0800
committerVolker Lendecke <vl@samba.org>2015-01-25 12:58:08 +0100
commitb66e4bed4f543c6fd23d23d298a1e985674ee7fd (patch)
treeb265dfd13be7529dca6ff6336bc05818ee4db50d /source3/modules
parentdc2f91020e3b52942f8aab60fd1db70d2afadd51 (diff)
downloadsamba-b66e4bed4f543c6fd23d23d298a1e985674ee7fd.tar.gz
samba-b66e4bed4f543c6fd23d23d298a1e985674ee7fd.tar.xz
samba-b66e4bed4f543c6fd23d23d298a1e985674ee7fd.zip
Fix a couple of DEBUG statements that were copied from elsewhere. Removed the misleading function name since the DEBUG message will print out the function name anyway.
Signed-of-by: Richard Sharpe <rsharpe@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Sun Jan 25 12:58:08 CET 2015 on sn-devel-104
Diffstat (limited to 'source3/modules')
-rw-r--r--source3/modules/vfs_default.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index 5634cc0fe9..5a4a187e59 100644
--- a/source3/modules/vfs_default.c
+++ b/source3/modules/vfs_default.c
@@ -223,8 +223,7 @@ static NTSTATUS vfswrap_get_dfs_referrals(struct vfs_handle_struct *handle,
pathnamep[consumedcnt] = '\0';
if (DEBUGLVL(3)) {
- dbgtext("setup_dfs_referral: Path %s to "
- "alternate path(s):",
+ dbgtext("Path %s to alternate path(s):",
pathnamep);
for (i=0; i < junction->referral_count; i++) {
dbgtext(" %s",
@@ -330,8 +329,7 @@ static NTSTATUS vfswrap_get_dfs_referrals(struct vfs_handle_struct *handle,
}
break;
default:
- DEBUG(0,("setup_dfs_referral: Invalid dfs referral "
- "version: %d\n",
+ DEBUG(0,("Invalid dfs referral version: %d\n",
max_referral_level));
return NT_STATUS_INVALID_LEVEL;
}