From c69f92d16d57c2387d31b5dfd01aab0685a671d0 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 24 Aug 2009 20:57:37 -0700 Subject: Second attempt at fix for bug 6529 - Offline files conflict with Vista and Office 2003. Confirmation from reporter that this fixes the issue in master on ext3/ext4. Back-ports to follow. Jeremy. --- source3/include/vfs_macros.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/include/vfs_macros.h') diff --git a/source3/include/vfs_macros.h b/source3/include/vfs_macros.h index 2d7344c4ae..e271cdee61 100644 --- a/source3/include/vfs_macros.h +++ b/source3/include/vfs_macros.h @@ -63,10 +63,10 @@ #define SMB_VFS_NEXT_STATVFS(handle, path, statbuf) \ smb_vfs_call_statvfs((handle)->next, (path), (statbuf)) -#define SMB_VFS_FS_CAPABILITIES(conn) \ - smb_vfs_call_fs_capabilities((conn)->vfs_handles) -#define SMB_VFS_NEXT_FS_CAPABILITIES(handle) \ - smb_vfs_call_fs_capabilities((handle)->next) +#define SMB_VFS_FS_CAPABILITIES(conn, p_ts_res) \ + smb_vfs_call_fs_capabilities((conn)->vfs_handles, (p_ts_res)) +#define SMB_VFS_NEXT_FS_CAPABILITIES(handle, p_ts_res) \ + smb_vfs_call_fs_capabilities((handle)->next, (p_ts_res)) /* Directory operations */ #define SMB_VFS_OPENDIR(conn, fname, mask, attr) \ -- cgit