svn commit: samba r18907 - in branches: SAMBA_3_0/source/smbd SAMBA_3_0_23/source/smbd

jra at samba.org jra at samba.org
Mon Sep 25 20:59:49 GMT 2006


Author: jra
Date: 2006-09-25 20:59:48 +0000 (Mon, 25 Sep 2006)
New Revision: 18907

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

Log:
W00t. My original fix was correct after all :-).
Re-checking it in.
Fix bug #4095 - username composed into domain\user
twice in spnego path.
Jeremy.

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


Changeset:
Modified: branches/SAMBA_3_0/source/smbd/sesssetup.c
===================================================================
--- branches/SAMBA_3_0/source/smbd/sesssetup.c	2006-09-25 18:33:15 UTC (rev 18906)
+++ branches/SAMBA_3_0/source/smbd/sesssetup.c	2006-09-25 20:59:48 UTC (rev 18907)
@@ -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",

Modified: branches/SAMBA_3_0_23/source/smbd/sesssetup.c
===================================================================
--- branches/SAMBA_3_0_23/source/smbd/sesssetup.c	2006-09-25 18:33:15 UTC (rev 18906)
+++ branches/SAMBA_3_0_23/source/smbd/sesssetup.c	2006-09-25 20:59:48 UTC (rev 18907)
@@ -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