diff options
author | Miguel Suarez <Miguel.Suarez@stratus.com> | 2009-02-03 14:36:50 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-02-03 14:36:50 -0800 |
commit | a4c5054b5a92c08498f522b39472d64a32a3cebb (patch) | |
tree | f2192a75c76aba314e9871a269215cd0add7f995 /source3/modules | |
parent | 189a85dd68eb6c62272e51769d842afbf8389a4f (diff) | |
download | samba-a4c5054b5a92c08498f522b39472d64a32a3cebb.tar.gz samba-a4c5054b5a92c08498f522b39472d64a32a3cebb.tar.bz2 samba-a4c5054b5a92c08498f522b39472d64a32a3cebb.zip |
Fix bug #6085 - In vfs_default.c change utime( ) call.
Diffstat (limited to 'source3/modules')
-rw-r--r-- | 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 f8ac3e85d3..679be57558 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); } |