* fhandler_disk_file.cc (fhandler_base::utimes_fs): Drop touching

ChangeTime.
This commit is contained in:
Corinna Vinschen 2005-04-16 12:53:48 +00:00
parent 06e18175e0
commit 8f47adf1c6
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2005-04-16 Corinna Vinschen <corinna@vinschen.de>
* fhandler_disk_file.cc (fhandler_base::utimes_fs): Drop touching
ChangeTime.
2005-04-16 Christopher Faylor <cgf@timesys.com> 2005-04-16 Christopher Faylor <cgf@timesys.com>
* fhandler.cc (fhandler::dup): Duplicate flags, too. * fhandler.cc (fhandler::dup): Duplicate flags, too.

View File

@ -833,7 +833,7 @@ fhandler_disk_file::utimes (const struct timeval *tvp)
int int
fhandler_base::utimes_fs (const struct timeval *tvp) fhandler_base::utimes_fs (const struct timeval *tvp)
{ {
FILETIME lastaccess, lastwrite, lastchange; FILETIME lastaccess, lastwrite;
struct timeval tmp[2]; struct timeval tmp[2];
query_open (query_write_attributes); query_open (query_write_attributes);
@ -862,13 +862,11 @@ fhandler_base::utimes_fs (const struct timeval *tvp)
} }
timeval_to_filetime (&tvp[0], &lastaccess); timeval_to_filetime (&tvp[0], &lastaccess);
timeval_to_filetime (&tvp[1], &lastwrite); timeval_to_filetime (&tvp[1], &lastwrite);
/* Update ctime */
timeval_to_filetime (&tmp[0], &lastchange);
debug_printf ("incoming lastaccess %08x %08x", tvp[0].tv_sec, tvp[0].tv_usec); debug_printf ("incoming lastaccess %08x %08x", tvp[0].tv_sec, tvp[0].tv_usec);
if (is_fs_special ()) if (is_fs_special ())
SetFileAttributes (pc, (DWORD) pc & ~FILE_ATTRIBUTE_READONLY); SetFileAttributes (pc, (DWORD) pc & ~FILE_ATTRIBUTE_READONLY);
BOOL res = SetFileTime (get_handle (), &lastchange, &lastaccess, &lastwrite); BOOL res = SetFileTime (get_handle (), NULL, &lastaccess, &lastwrite);
DWORD errcode = GetLastError (); DWORD errcode = GetLastError ();
if (is_fs_special ()) if (is_fs_special ())
SetFileAttributes (pc, pc); SetFileAttributes (pc, pc);