From: Shirish Pargaonkar Date: Sat, 26 Jul 2014 15:41:25 +0000 (-0500) Subject: samba: Retain case sensitivity of cifs client X-Git-Tag: samba-4.0.22~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=851b93ddf4808201cb820bc0ae2a4e6f4f824eb0;p=thirdparty%2Fsamba.git samba: Retain case sensitivity of cifs client When a client supports extended security but server does not, and that client, in Flags2 field of smb header indicates that - it supports extended security negotiation - it does not support security signatures - it does not require security signatures Samba server treats a client as a Vista client. That turns off case sensitivity and that is a problem for cifs vfs client. So include remote cifs client along with remote samba client to not do so otherwise. Bug: https://bugzilla.samba.org/show_bug.cgi?id=10755 Signed-off-by: Shirish Pargaonkar Reviewed-by: Jeremy Allison Reviewed-by: David Disseldorp Autobuild-User(master): David Disseldorp Autobuild-Date(master): Fri Aug 1 16:11:43 CEST 2014 on sn-devel-104 (cherry picked from commit a0583976da2ba09da0fd94f739ed4f5851e2a858) --- diff --git a/source3/smbd/negprot.c b/source3/smbd/negprot.c index 315bd890376..b1d93cd8a3e 100644 --- a/source3/smbd/negprot.c +++ b/source3/smbd/negprot.c @@ -252,7 +252,8 @@ static void reply_nt1(struct smb_request *req, uint16 choice) if ( (req->flags2 & FLAGS2_EXTENDED_SECURITY) && ((req->flags2 & FLAGS2_SMB_SECURITY_SIGNATURES_REQUIRED) == 0) ) { - if (get_remote_arch() != RA_SAMBA) { + if ((get_remote_arch() != RA_SAMBA) && + (get_remote_arch() != RA_CIFSFS)) { set_remote_arch( RA_VISTA ); } }