Add accidentally missing checkins.
* fhandler.h (fhandler_base::fstat_helper): Add creation time parameter. * glob.cc (stat32_to_stat64): Set st_birthtim to st_mtim.
This commit is contained in:
parent
74652ce13e
commit
7113f5da75
|
@ -1,3 +1,8 @@
|
|||
2007-03-06 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler.h (fhandler_base::fstat_helper): Add creation time parameter.
|
||||
* glob.cc (stat32_to_stat64): Set st_birthtim to st_mtim.
|
||||
|
||||
2007-03-06 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* include/cygwin/stat.h (S_TYPEISMQ): Define.
|
||||
|
|
|
@ -268,6 +268,7 @@ class fhandler_base
|
|||
FILETIME ftChangeTime,
|
||||
FILETIME ftLastAccessTime,
|
||||
FILETIME ftLastWriteTime,
|
||||
FILETIME ftCreationTime,
|
||||
DWORD dwVolumeSerialNumber,
|
||||
ULONGLONG nFileSize,
|
||||
LONGLONG nAllocSize,
|
||||
|
|
|
@ -886,6 +886,7 @@ stat32_to_stat64 (struct __stat32 *src, struct __stat64 *dst)
|
|||
dst->st_atim = src->st_atim;
|
||||
dst->st_mtim = src->st_mtim;
|
||||
dst->st_ctim = src->st_ctim;
|
||||
dst->st_birthtim = src->st_mtim;
|
||||
dst->st_blksize = src->st_blksize;
|
||||
dst->st_blocks = src->st_blocks;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue