summaryrefslogtreecommitdiffstats
path: root/source/nsswitch/winbindd_cm.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-03-31 22:02:38 +0000
committerGerald Carter <jerry@samba.org>2005-03-31 22:02:38 +0000
commite38d69dd606e348fc6bcd65ad8f4205f42e20b5b (patch)
treea63c20a8ebe9192996e595c4e15609a72f1d2a68 /source/nsswitch/winbindd_cm.c
parentafbf27468f6ebc2e3f116c14ef8ed32889b7e88c (diff)
downloadsamba-e38d69dd606e348fc6bcd65ad8f4205f42e20b5b.tar.gz
samba-e38d69dd606e348fc6bcd65ad8f4205f42e20b5b.tar.xz
samba-e38d69dd606e348fc6bcd65ad8f4205f42e20b5b.zip
r6158: fix some misleading error messages
Diffstat (limited to 'source/nsswitch/winbindd_cm.c')
-rw-r--r--source/nsswitch/winbindd_cm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/nsswitch/winbindd_cm.c b/source/nsswitch/winbindd_cm.c
index e6a7df19775..832672e64cb 100644
--- a/source/nsswitch/winbindd_cm.c
+++ b/source/nsswitch/winbindd_cm.c
@@ -102,11 +102,11 @@ static void cm_get_ipc_userpass(char **username, char **domain, char **password)
if (!*password || !**password)
*password = smb_xstrdup("");
- DEBUG(3, ("IPC$ connections done by user %s\\%s\n",
+ DEBUG(3, ("cm_get_ipc_userpass: Retrieved auth-user from secrets.tdb [%s\\%s]\n",
*domain, *username));
} else {
- DEBUG(3, ("IPC$ connections done anonymously\n"));
+ DEBUG(3, ("cm_get_ipc_userpass: No auth-user defined\n"));
*username = smb_xstrdup("");
*domain = smb_xstrdup("");
*password = smb_xstrdup("");