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:
Corinna Vinschen 2007-03-06 16:29:40 +00:00
parent 74652ce13e
commit 7113f5da75
3 changed files with 7 additions and 0 deletions

View file

@ -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.

View file

@ -268,6 +268,7 @@ class fhandler_base
FILETIME ftChangeTime,
FILETIME ftLastAccessTime,
FILETIME ftLastWriteTime,
FILETIME ftCreationTime,
DWORD dwVolumeSerialNumber,
ULONGLONG nFileSize,
LONGLONG nAllocSize,

View file

@ -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;
}