From: Miguel Suarez Date: Tue, 3 Feb 2009 22:35:19 +0000 (-0800) Subject: Fix bug #6085 - In vfs_default.c change utime( ) call. X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=2937519665be41237ee0f2c3374bea716bf95e8a;p=samba.git Fix bug #6085 - In vfs_default.c change utime( ) call. --- diff --git a/source/modules/vfs_default.c b/source/modules/vfs_default.c index d306b0f8481..1e95633b6d6 100644 --- a/source/modules/vfs_default.c +++ b/source/modules/vfs_default.c @@ -670,7 +670,7 @@ static int vfswrap_ntimes(vfs_handle_struct *handle, const char *path, const str struct utimbuf times; times.actime = convert_timespec_to_time_t(ts[0]); times.modtime = convert_timespec_to_time_t(ts[1]); - result = utime(path, times); + result = utime(path, ×); } else { result = utime(path, NULL); }