* pwdgrp.h (pwdgrp_check::set_last_modified): Call GetFileTime()
instead of GetFileInformationByHandle().
This commit is contained in:
parent
3800a9e7d7
commit
e3a4f8ef6f
|
@ -1,3 +1,8 @@
|
|||
Sun Sep 9 23:09:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* pwdgrp.h (pwdgrp_check::set_last_modified): Call GetFileTime()
|
||||
instead of GetFileInformationByHandle().
|
||||
|
||||
Sun Sep 9 15:59:53 2001 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* heap.h (inheap): Rewrite macro to accomodate removal of brk macros
|
||||
|
|
|
@ -49,9 +49,7 @@ public:
|
|||
if (!file_w32[0])
|
||||
strcpy (file_w32, cygheap->fdtab[fileno (f)]->get_win32_name ());
|
||||
|
||||
BY_HANDLE_FILE_INFORMATION inf;
|
||||
if (GetFileInformationByHandle (cygheap->fdtab[fileno (f)]->get_handle (),
|
||||
&inf))
|
||||
last_modified = inf.ftLastWriteTime;
|
||||
GetFileTime (cygheap->fdtab[fileno (f)]->get_handle (),
|
||||
NULL, NULL, &last_modified);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue