svn commit: samba r6315 - in branches/SAMBA_4_0/source/torture/raw: .

abartlet at samba.org abartlet at samba.org
Tue Apr 12 07:56:56 GMT 2005


Author: abartlet
Date: 2005-04-12 07:56:56 +0000 (Tue, 12 Apr 2005)
New Revision: 6315

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

Log:
Allow sane session setup behaviour on SPNEGO regarding VUIDs.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/torture/raw/context.c


Changeset:
Modified: branches/SAMBA_4_0/source/torture/raw/context.c
===================================================================
--- branches/SAMBA_4_0/source/torture/raw/context.c	2005-04-12 07:43:38 UTC (rev 6314)
+++ branches/SAMBA_4_0/source/torture/raw/context.c	2005-04-12 07:56:56 UTC (rev 6315)
@@ -113,7 +113,9 @@
 	
 	if (cli->transport->negotiate.capabilities & CAP_EXTENDED_SECURITY) {
 		/* Samba4 currently fails this - we need to determine if this insane behaviour is important */
-		CHECK_VALUE(session2->vuid, session->vuid);
+		if (session2->vuid == session->vuid) {
+			printf("server allows the user to re-use an existing vuid in session setup \n");
+		}
 	} else {
 		CHECK_NOT_VALUE(session2->vuid, session->vuid);
 	}



More information about the samba-cvs mailing list