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/smbd/vfs.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source3/smbd/vfs.c') diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index 75fd8396e6..5425c55198 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -1096,10 +1096,11 @@ int smb_vfs_call_statvfs(struct vfs_handle_struct *handle, const char *path, return handle->fns->statvfs(handle, path, statbuf); } -uint32_t smb_vfs_call_fs_capabilities(struct vfs_handle_struct *handle) +uint32_t smb_vfs_call_fs_capabilities(struct vfs_handle_struct *handle, + enum timestamp_set_resolution *p_ts_res) { VFS_FIND(fs_capabilities); - return handle->fns->fs_capabilities(handle); + return handle->fns->fs_capabilities(handle, p_ts_res); } SMB_STRUCT_DIR *smb_vfs_call_opendir(struct vfs_handle_struct *handle, -- cgit