svn commit: samba r3616 - in branches/SAMBA_3_0/source/auth: .

abartlet at samba.org abartlet at samba.org
Mon Nov 8 04:32:23 GMT 2004


Author: abartlet
Date: 2004-11-08 04:32:23 +0000 (Mon, 08 Nov 2004)
New Revision: 3616

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

Log:
Merge for 3.0.8.

In auth_winbind, remove the push_utf8 calls, as this is no longer a
UTF8 interface.  (Removed from everywhere else earlier).

Tested with ASCII - I tried to load the weird charset for testing, but
it doesn't seem to work any more.

Andrew Bartlett

Modified:
   branches/SAMBA_3_0/source/auth/auth_winbind.c


Changeset:
Modified: branches/SAMBA_3_0/source/auth/auth_winbind.c
===================================================================
--- branches/SAMBA_3_0/source/auth/auth_winbind.c	2004-11-08 03:54:12 UTC (rev 3615)
+++ branches/SAMBA_3_0/source/auth/auth_winbind.c	2004-11-08 04:32:23 UTC (rev 3616)
@@ -88,11 +88,11 @@
 
 	request.flags = WBFLAG_PAM_INFO3_NDR;
 
-	push_utf8_fstring(request.data.auth_crap.user, 
+	fstrcpy(request.data.auth_crap.user, 
 			  user_info->smb_name.str);
-	push_utf8_fstring(request.data.auth_crap.domain, 
+	fstrcpy(request.data.auth_crap.domain, 
 			  user_info->domain.str);
-	push_utf8_fstring(request.data.auth_crap.workstation, 
+	fstrcpy(request.data.auth_crap.workstation, 
 			  user_info->wksta_name.str);
 
 	memcpy(request.data.auth_crap.chal, auth_context->challenge.data, sizeof(request.data.auth_crap.chal));



More information about the samba-cvs mailing list