The branch, v4-8-test has been updated
       via  aa3a07a01f9 torture: Fix the 32-bit build
      from  42c3b3325a3 vfs_fruit: validation of writes on AFP_AfpInfo stream

https://git.samba.org/?p=samba.git;a=shortlog;h=v4-8-test


- Log -----------------------------------------------------------------
commit aa3a07a01f90fe889c55b5cc56109dd0c61ce32f
Author: Volker Lendecke <v...@samba.org>
Date:   Thu Nov 15 15:21:36 2018 +0100

    torture: Fix the 32-bit build
    
    Unfortunately there's no off_t printf specifier as there's one for
    size_t. So we have to use intmax_t.
    
    Signed-off-by: Volker Lendecke <v...@samba.org>
    Reviewed-by: Andreas Schneider <a...@samba.org>
    
    Autobuild-User(master): Andreas Schneider <a...@cryptomilk.org>
    Autobuild-Date(master): Thu Nov 15 19:45:24 CET 2018 on sn-devel-144
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=13677
    
    (cherry picked from commit 0872f140c4a354511b25bb5ed937b9e9409ade3a)
    
    Autobuild-User(v4-8-test): Karolin Seeger <ksee...@samba.org>
    Autobuild-Date(v4-8-test): Fri Nov 16 17:13:21 CET 2018 on sn-devel-144

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

Summary of changes:
 source4/torture/vfs/fruit.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/torture/vfs/fruit.c b/source4/torture/vfs/fruit.c
index 53db504619b..e321b072da4 100644
--- a/source4/torture/vfs/fruit.c
+++ b/source4/torture/vfs/fruit.c
@@ -4727,9 +4727,9 @@ static bool test_writing_afpinfo(struct torture_context 
*tctx,
                size_t fi_check_size;
 
                torture_comment(tctx,
-                               "Test %d: offset=%zd size=%zu result=%s\n",
+                               "Test %d: offset=%jd size=%zu result=%s\n",
                                i,
-                               test_sizes[i].offset,
+                               (intmax_t)test_sizes[i].offset,
                                test_sizes[i].size,
                                test_sizes[i].expected_result ? "true":"false");
 


-- 
Samba Shared Repository

Reply via email to