From 2754a8e2b60fb07ebec6384fc3c3a7c3450de5b3 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 5 Apr 2010 13:50:59 -0700 Subject: Fix related to bug #7326 - can't read/write any files with full_audit --- source3/modules/vfs_full_audit.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c index 6986a86c2d..8a93695a81 100644 --- a/source3/modules/vfs_full_audit.c +++ b/source3/modules/vfs_full_audit.c @@ -1083,11 +1083,12 @@ static int smb_full_audit_lstat(vfs_handle_struct *handle, static uint64_t smb_full_audit_get_alloc_size(vfs_handle_struct *handle, files_struct *fsp, const SMB_STRUCT_STAT *sbuf) { - int result; + uint64_t result; result = SMB_VFS_NEXT_GET_ALLOC_SIZE(handle, fsp, sbuf); - do_log(SMB_VFS_OP_GET_ALLOC_SIZE, (result >= 0), handle, "%d", result); + do_log(SMB_VFS_OP_GET_ALLOC_SIZE, (result != (uint64_t)-1), handle, + "%llu", result); return result; } -- cgit