http://www.winehq.com/hypermail/wine-devel/2002/05/0253.html
| Vincent | | --- files/file.c.orig Thu May 9 10:55:51 2002 | +++ files/file.c Sun Apr 28 20:01:55 2002 | @@ -659,7 +659,7 @@ | if (!(st->st_mode & S_IWUSR)) | info->dwFileAttributes |= FILE_ATTRIBUTE_READONLY; | | - RtlSecondsSince1970ToTime( st->st_mtime, &info->ftCreationTime ); | + RtlSecondsSince1970ToTime( st->st_ctime, &info->ftCreationTime ); | RtlSecondsSince1970ToTime( st->st_mtime, &info->ftLastWriteTime ); | RtlSecondsSince1970ToTime( st->st_atime, &info->ftLastAccessTime );
Isn't creationtime usually set to MIN(st->st_mtime,st->st_ctime)