svn commit: samba r18399 - in branches/SAMBA_3_0_23/source/smbd: .

jra at samba.org jra at samba.org
Mon Sep 11 21:09:30 GMT 2006


Author: jra
Date: 2006-09-11 21:09:30 +0000 (Mon, 11 Sep 2006)
New Revision: 18399

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

Log:
Fix bug #4095 - username composed into domain\user
twice in spnego path. Jerry please check.
Jeremy.
 line, and those below, will be ignored--

M    source/smbd/sesssetup.c

Modified:
   branches/SAMBA_3_0_23/source/smbd/sesssetup.c


Changeset:
Modified: branches/SAMBA_3_0_23/source/smbd/sesssetup.c
===================================================================
--- branches/SAMBA_3_0_23/source/smbd/sesssetup.c	2006-09-11 21:06:44 UTC (rev 18398)
+++ branches/SAMBA_3_0_23/source/smbd/sesssetup.c	2006-09-11 21:09:30 UTC (rev 18399)
@@ -327,7 +327,7 @@
 		/* pass the unmapped username here since map_username() 
 		   will be called again from inside make_server_info_info3() */
 		
-		ret = make_server_info_info3(mem_ctx, user, domain, 
+		ret = make_server_info_info3(mem_ctx, client, domain, 
 					     &server_info, &logon_info->info3);
 		if ( !NT_STATUS_IS_OK(ret) ) {
 			DEBUG(1,("make_server_info_info3 failed: %s!\n",



More information about the samba-cvs mailing list