[SCM] Samba Shared Repository - branch master updated - e622325155a13fd9f6f85a767d345344f18eca41

Stefan Metzmacher metze at samba.org
Tue Sep 30 06:48:48 GMT 2008


The branch, master has been updated
       via  e622325155a13fd9f6f85a767d345344f18eca41 (commit)
      from  04edf11bee9f248241c46ce809870163a16d3ba0 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit e622325155a13fd9f6f85a767d345344f18eca41
Author: Stefan Metzmacher <metze at samba.org>
Date:   Tue Sep 30 08:41:16 2008 +0200

    s4:smb_server/smb: FLAGS2_SMB_SECURITY_SIGNATURES should only be echoed, not set always
    
    metze

-----------------------------------------------------------------------

Summary of changes:
 source4/smb_server/smb/request.c |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/smb_server/smb/request.c b/source4/smb_server/smb/request.c
index eb3e100..241c262 100644
--- a/source4/smb_server/smb/request.c
+++ b/source4/smb_server/smb/request.c
@@ -135,15 +135,16 @@ void smbsrv_setup_reply(struct smbsrv_request *req, uint_t wct, size_t buflen)
 	flags2 = FLAGS2_LONG_PATH_COMPONENTS | 
 		FLAGS2_EXTENDED_ATTRIBUTES | 
 		FLAGS2_IS_LONG_NAME;
-	flags2 |= (req->flags2 & (FLAGS2_UNICODE_STRINGS|FLAGS2_EXTENDED_SECURITY));
+#define _SMB_FLAGS2_ECHOED_FLAGS ( \
+	FLAGS2_UNICODE_STRINGS | \
+	FLAGS2_EXTENDED_SECURITY | \
+	FLAGS2_SMB_SECURITY_SIGNATURES \
+)
+	flags2 |= (req->flags2 & _SMB_FLAGS2_ECHOED_FLAGS);
 	if (req->smb_conn->negotiate.client_caps & CAP_STATUS32) {
 		flags2 |= FLAGS2_32_BIT_ERROR_CODES;
 	}
 
-	if (req->smb_conn->signing.allow_smb_signing || req->smb_conn->signing.mandatory_signing) {
-		flags2 |= FLAGS2_SMB_SECURITY_SIGNATURES; 
-	}
-	
 	req->out.hdr = req->out.buffer + NBT_HDR_SIZE;
 	req->out.vwv = req->out.hdr + HDR_VWV;
 	req->out.wct = wct;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list