From a4c5054b5a92c08498f522b39472d64a32a3cebb Mon Sep 17 00:00:00 2001 From: Miguel Suarez Date: Tue, 3 Feb 2009 14:36:50 -0800 Subject: [PATCH] Fix bug #6085 - In vfs_default.c change utime( ) call. --- source3/modules/vfs_default.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index f8ac3e85d3b..679be57558f 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -735,7 +735,7 @@ static int vfswrap_ntimes(vfs_handle_struct *handle, const char *path, struct utimbuf times; times.actime = convert_timespec_to_time_t(ft->atime); times.modtime = convert_timespec_to_time_t(ft->mtime); - result = utime(path, times); + result = utime(path, ×); } else { result = utime(path, NULL); } -- 2.34.1