summaryrefslogtreecommitdiff
path: root/source3/nsswitch
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-03-31 22:02:38 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:56:26 -0500
commit4066f6e59a3d2a62abdf2934d7cee970cf2be4d6 (patch)
tree4b919ebf404b11917a6280f1b80e93b49f4f20dc /source3/nsswitch
parenteefc6f0ab4eb9aea426678228b2815c472f79b4a (diff)
downloadsamba-4066f6e59a3d2a62abdf2934d7cee970cf2be4d6.tar.gz
samba-4066f6e59a3d2a62abdf2934d7cee970cf2be4d6.tar.bz2
samba-4066f6e59a3d2a62abdf2934d7cee970cf2be4d6.zip
r6158: fix some misleading error messages
(This used to be commit 91a8e1ac6debffe457624a625e0f407bdbbbcb15)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r--source3/nsswitch/winbindd_cm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nsswitch/winbindd_cm.c b/source3/nsswitch/winbindd_cm.c
index e6a7df1977..832672e64c 100644
--- a/source3/nsswitch/winbindd_cm.c
+++ b/source3/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("");