svn commit: samba r8796 - in branches/SAMBA_3_0/source/nsswitch: .

jerry at samba.org jerry at samba.org
Wed Jul 27 15:08:12 GMT 2005


Author: jerry
Date: 2005-07-27 15:08:11 +0000 (Wed, 27 Jul 2005)
New Revision: 8796

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

Log:
disable schannel on the lsa client pipe for now to deal with Windows 2003 sp1 and Windows 2000 SP4 SR1
Modified:
   branches/SAMBA_3_0/source/nsswitch/winbindd_cm.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd_cm.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd_cm.c	2005-07-27 14:21:27 UTC (rev 8795)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd_cm.c	2005-07-27 15:08:11 UTC (rev 8796)
@@ -1038,6 +1038,12 @@
 	conn = &domain->conn;
 
 	if (conn->lsa_pipe == NULL) {
+#if 0
+		/* disabling schannl on the LSA pipe for now since 
+		   both Win2K-SP4 SR1 & Win2K3-SP1 fail the open_policy() 
+		   call (return codes 0xc0020042 and 0xc0020041 respectively).
+		   We really need to fix this soon.  --jerry  */
+
 		unsigned char *session_key;
 
 		if (cm_get_schannel_key(domain, mem_ctx, &session_key))
@@ -1046,6 +1052,7 @@
 							       session_key,
 							       domain->name);
 		else
+#endif
 			conn->lsa_pipe = cli_rpc_open_noauth(conn->cli,
 							     PI_LSARPC);
 



More information about the samba-cvs mailing list