svn commit: samba r11667 - branches/SAMBA_3_0/source/nsswitch trunk/source/nsswitch

vlendec at samba.org vlendec at samba.org
Fri Nov 11 07:03:17 GMT 2005


Author: vlendec
Date: 2005-11-11 07:03:17 +0000 (Fri, 11 Nov 2005)
New Revision: 11667

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=11667

Log:
Fix a debug message
Modified:
   branches/SAMBA_3_0/source/nsswitch/winbindd_pam.c
   trunk/source/nsswitch/winbindd_pam.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd_pam.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd_pam.c	2005-11-11 06:26:42 UTC (rev 11666)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd_pam.c	2005-11-11 07:03:17 UTC (rev 11667)
@@ -530,8 +530,9 @@
 
  done:
 	set_auth_errors(&state->response, result);
-	DEBUG(5, ("CRAP authentication for %s returned %s (PAM: %d)\n",
-		  state->request.data.auth.user, 
+	DEBUG(5, ("CRAP authentication for %s\\%s returned %s (PAM: %d)\n",
+		  state->request.data.auth_crap.domain,
+		  state->request.data.auth_crap.user, 
 		  state->response.data.auth.nt_status_string,
 		  state->response.data.auth.pam_error));
 	request_error(state);

Modified: trunk/source/nsswitch/winbindd_pam.c
===================================================================
--- trunk/source/nsswitch/winbindd_pam.c	2005-11-11 06:26:42 UTC (rev 11666)
+++ trunk/source/nsswitch/winbindd_pam.c	2005-11-11 07:03:17 UTC (rev 11667)
@@ -530,8 +530,9 @@
 
  done:
 	set_auth_errors(&state->response, result);
-	DEBUG(5, ("CRAP authentication for %s returned %s (PAM: %d)\n",
-		  state->request.data.auth.user, 
+	DEBUG(5, ("CRAP authentication for %s\\%s returned %s (PAM: %d)\n",
+		  state->request.data.auth_crap.domain,
+		  state->request.data.auth_crap.user, 
 		  state->response.data.auth.nt_status_string,
 		  state->response.data.auth.pam_error));
 	request_error(state);



More information about the samba-cvs mailing list