The branch, master has been updated
       via  60b062d614e vfs_gpfs: Fix the 32-bit build
      from  ca93b1e15a1 s4/param/provision py_dom_sid_FromSid: avoid python 
memleak

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


- Log -----------------------------------------------------------------
commit 60b062d614ecf8fa97b3efc0e587d3ee55e4971b
Author: Volker Lendecke <v...@samba.org>
Date:   Tue Jan 29 10:32:43 2019 +0200

    vfs_gpfs: Fix the 32-bit build
    
    Signed-off-by: Volker Lendecke <v...@samba.org>
    Reviewed-by: Christof Schmitt <c...@samba.org>
    
    Autobuild-User(master): Christof Schmitt <c...@samba.org>
    Autobuild-Date(master): Tue Jan 29 22:06:59 CET 2019 on sn-devel-144

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

Summary of changes:
 source3/modules/vfs_gpfs.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c
index 3a75efdf5e6..d86d0996fcd 100644
--- a/source3/modules/vfs_gpfs.c
+++ b/source3/modules/vfs_gpfs.c
@@ -2112,8 +2112,10 @@ static int vfs_gpfs_connect(struct vfs_handle_struct 
*handle,
 
                if (buf.f_type != GPFS_SUPER_MAGIC) {
                        DBG_ERR("SMB share %s, path %s not in GPFS file system."
-                               " statfs magic: 0x%lx\n",
-                               service, connectpath, buf.f_type);
+                               " statfs magic: 0x%jx\n",
+                               service,
+                               connectpath,
+                               (uintmax_t)buf.f_type);
                        errno = EINVAL;
                        TALLOC_FREE(config);
                        return -1;


-- 
Samba Shared Repository

Reply via email to