[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Wed Apr 10 01:18:03 UTC 2019


The branch, master has been updated
       via  56f933fa344 vfs_full_audit: Fix logging of get_real_filename output
      from  9ee32f3a965 ctdb-test: Adding test case to verify queue resizeing

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


- Log -----------------------------------------------------------------
commit 56f933fa344e1ed4cbaa15b43cc219591e2eca8a
Author: Christof Schmitt <cs at samba.org>
Date:   Tue Apr 9 13:57:36 2019 -0700

    vfs_full_audit: Fix logging of get_real_filename output
    
    result == 0 indicated success. In that case log the available
    found_name.
    
    Signed-off-by: Christof Schmitt <cs at samba.org>
    Reviewed-by: Jeremy Allison <jra at samba.org>
    
    Autobuild-User(master): Jeremy Allison <jra at samba.org>
    Autobuild-Date(master): Wed Apr 10 01:17:28 UTC 2019 on sn-devel-144

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

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


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c
index fcfb024d493..a4e2afa0dbb 100644
--- a/source3/modules/vfs_full_audit.c
+++ b/source3/modules/vfs_full_audit.c
@@ -1852,7 +1852,7 @@ static int smb_full_audit_get_real_filename(struct vfs_handle_struct *handle,
 						found_name);
 
 	do_log(SMB_VFS_OP_GET_REAL_FILENAME, (result == 0), handle,
-	       "%s/%s->%s", path, name, (result == 0) ? "" : *found_name);
+	       "%s/%s->%s", path, name, (result == 0) ? *found_name : "");
 
 	return result;
 }


-- 
Samba Shared Repository



More information about the samba-cvs mailing list