svn commit: samba r6699 - in branches/SAMBA_4_0/source/libcli/composite: .

abartlet at samba.org abartlet at samba.org
Tue May 10 09:50:30 GMT 2005


Author: abartlet
Date: 2005-05-10 09:50:29 +0000 (Tue, 10 May 2005)
New Revision: 6699

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

Log:
Windows clients seem to ask for CIFS/, ie in upper case, so match it.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/libcli/composite/sesssetup.c


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/composite/sesssetup.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/composite/sesssetup.c	2005-05-10 09:49:45 UTC (rev 6698)
+++ branches/SAMBA_4_0/source/libcli/composite/sesssetup.c	2005-05-10 09:50:29 UTC (rev 6699)
@@ -285,7 +285,7 @@
 		return NULL;
 	}
 
-	status = gensec_set_target_service(session->gensec, "cifs");
+	status = gensec_set_target_service(session->gensec, "CIFS");
 	if (!NT_STATUS_IS_OK(status)) {
 		DEBUG(1, ("Failed to start set GENSEC target service: %s\n", 
 			  nt_errstr(status)));



More information about the samba-cvs mailing list