* fhandler.cc (fhandler_base::fstat): Set st_mtime time to current time.

This commit is contained in:
Christopher Faylor
2010-03-28 17:49:35 +00:00
parent c019a66c32
commit e2402ed859
2 changed files with 6 additions and 1 deletions

View File

@ -1100,7 +1100,8 @@ fhandler_base::fstat (struct __stat64 *buf)
buf->st_gid = getegid32 ();
buf->st_nlink = 1;
buf->st_blksize = PREFERRED_IO_BLKSIZE;
buf->st_ctim.tv_sec = 1164931200L; /* Arbitrary value: 2006-12-01 */
buf->st_ctim.tv_sec = time (NULL); /* Arbitrary value: current time,
like Linux */
buf->st_ctim.tv_nsec = 0L;
buf->st_atim = buf->st_mtim = buf->st_birthtim = buf->st_ctim;
return 0;