From: Gerald Carter Date: Thu, 31 Mar 2005 22:02:38 +0000 (+0000) Subject: r6158: fix some misleading error messages X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~4998 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=91a8e1ac6debffe457624a625e0f407bdbbbcb15;p=thirdparty%2Fsamba.git r6158: fix some misleading error messages --- 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("");