svn commit: samba r19628 - in branches/SAMBA_4_0/source/auth/gensec: .

abartlet at samba.org abartlet at samba.org
Tue Nov 7 21:05:45 GMT 2006


Author: abartlet
Date: 2006-11-07 21:05:45 +0000 (Tue, 07 Nov 2006)
New Revision: 19628

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

Log:
This hint via Love at the IETF meeting:

Larry told me that most context flags needed to be set to, otherwise
it wouldn't work.

This fixes DCE_STYLE against Win2k3 SP1.  It seems they just tightened
up their end of the GSSAPI code, as DCE_STYLE is explicity rejected in
the session setup too (being the wrong layer).

Andrew Bartlett


Modified:
   branches/SAMBA_4_0/source/auth/gensec/gensec_gssapi.c


Changeset:
Modified: branches/SAMBA_4_0/source/auth/gensec/gensec_gssapi.c
===================================================================
--- branches/SAMBA_4_0/source/auth/gensec/gensec_gssapi.c	2006-11-07 18:35:41 UTC (rev 19627)
+++ branches/SAMBA_4_0/source/auth/gensec/gensec_gssapi.c	2006-11-07 21:05:45 UTC (rev 19628)
@@ -164,6 +164,9 @@
 	if (lp_parm_bool(-1, "gensec_gssapi", "delegation", True)) {
 		gensec_gssapi_state->want_flags |= GSS_C_DELEG_FLAG;
 	}
+	if (lp_parm_bool(-1, "gensec_gssapi", "replay", True)) {
+		gensec_gssapi_state->want_flags |= GSS_C_REPLAY_FLAG;
+	}
 	if (lp_parm_bool(-1, "gensec_gssapi", "sequence", True)) {
 		gensec_gssapi_state->want_flags |= GSS_C_SEQUENCE_FLAG;
 	}



More information about the samba-cvs mailing list