[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Fri May 21 18:13:40 MDT 2010


The branch, master has been updated
       via  8248446... Don't forget brackets around bitwise tests.
      from  b2a7ad8c.. Make DFS work over SMB2.

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


- Log -----------------------------------------------------------------
commit 82484461e3f8f9bba351bbb5f5178c6f17dd049d
Author: Jeremy Allison <jra at samba.org>
Date:   Fri May 21 17:12:40 2010 -0700

    Don't forget brackets around bitwise tests.
    
    Jeremy.

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

Summary of changes:
 source3/smbd/smb2_create.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c
index b4b265b..ed70271 100644
--- a/source3/smbd/smb2_create.c
+++ b/source3/smbd/smb2_create.c
@@ -678,7 +678,7 @@ static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx,
 		 * will do the path processing.
 		 */
 
-		if (!smb1req->flags2 & FLAGS2_DFS_PATHNAMES) {
+		if (!(smb1req->flags2 & FLAGS2_DFS_PATHNAMES)) {
 			/* convert '\\' into '/' */
 			status = check_path_syntax(fname);
 			if (!NT_STATUS_IS_OK(status)) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list