From bed551bf1d8366567cadccdf4e6b8aeed087dca4 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 15 Sep 2009 13:57:26 -0700 Subject: [PATCH] Last part of bug 6529 for 3.4.2 only. Make sure we still set the time resolution correctly on Darwin. Jeremy --- source3/modules/vfs_default.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 0a66531..f16cd46 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -103,7 +103,7 @@ static uint32_t vfswrap_fs_capabilities(struct vfs_handle_struct *handle) struct vfs_statvfs_struct statbuf; ZERO_STRUCT(statbuf); sys_statvfs(handle->conn->connectpath, &statbuf); - return statbuf.FsCapabilities; + caps = statbuf.FsCapabilities; #endif conn->ts_res = TIMESTAMP_SET_SECONDS; -- 1.6.0.4