svn commit: samba r13043 - in trunk/source/nsswitch: .

jra at samba.org jra at samba.org
Thu Jan 19 22:26:30 GMT 2006


Author: jra
Date: 2006-01-19 22:26:29 +0000 (Thu, 19 Jan 2006)
New Revision: 13043

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

Log:
Fix for bug #3248 Stefan Burkei <stefan at burkei.de>.
When doing auth_crap authentication use the client
given workstation name not our own.
Jeremy.

Modified:
   trunk/source/nsswitch/winbindd_pam.c


Changeset:
Modified: trunk/source/nsswitch/winbindd_pam.c
===================================================================
--- trunk/source/nsswitch/winbindd_pam.c	2006-01-19 22:26:26 UTC (rev 13042)
+++ trunk/source/nsswitch/winbindd_pam.c	2006-01-19 22:26:29 UTC (rev 13043)
@@ -1426,7 +1426,8 @@
 							   contact_domain->dcname,
 							   name_user,
 							   name_domain, 
-							   global_myname(),
+									/* Bug #3248 - found by Stefan Burkei. */
+							   workstation, /* We carefully set this above so use it... */
 							   state->request.data.auth_crap.chal,
 							   lm_resp,
 							   nt_resp,



More information about the samba-cvs mailing list