svn commit: samba r13042 - in branches/SAMBA_3_0/source/nsswitch: .

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


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

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

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:
   branches/SAMBA_3_0/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	2006-01-19 21:44:41 UTC (rev 13041)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd_pam.c	2006-01-19 22:26:26 UTC (rev 13042)
@@ -640,7 +640,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