From 4066f6e59a3d2a62abdf2934d7cee970cf2be4d6 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Thu, 31 Mar 2005 22:02:38 +0000 Subject: r6158: fix some misleading error messages (This used to be commit 91a8e1ac6debffe457624a625e0f407bdbbbcb15) --- source3/nsswitch/winbindd_cm.c | 4 ++-- 1 file 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(""); -- cgit