[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Tue Jun 21 20:23:02 UTC 2016


The branch, master has been updated
       via  345cfae smbd: Fix a signed/unsigned hickup
      from  6083e62 ctdb-daemon: make bool assignment more obvious

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


- Log -----------------------------------------------------------------
commit 345cfae91910cfb62649cbf5d44483483167134f
Author: Volker Lendecke <vl at samba.org>
Date:   Tue Jun 21 16:23:38 2016 +0200

    smbd: Fix a signed/unsigned hickup
    
    Signed-off-by: Volker Lendecke <vl at samba.org>
    Reviewed-by: Jeremy Allison <jra at samba.org>
    
    Autobuild-User(master): Jeremy Allison <jra at samba.org>
    Autobuild-Date(master): Tue Jun 21 22:22:03 CEST 2016 on sn-devel-144

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

Summary of changes:
 source3/smbd/open.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/open.c b/source3/smbd/open.c
index af1c1de..0c46eb1 100644
--- a/source3/smbd/open.c
+++ b/source3/smbd/open.c
@@ -1213,7 +1213,7 @@ static NTSTATUS open_mode_check(connection_struct *conn,
 				uint32_t access_mask,
 				uint32_t share_access)
 {
-	int i;
+	uint32_t i;
 
 	if(lck->data->num_share_modes == 0) {
 		return NT_STATUS_OK;


-- 
Samba Shared Repository



More information about the samba-cvs mailing list