mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-30 19:10:36 +08:00
In FILE_ID_BOTH_DIR_INFORMATION it's actually FileId, not IndexNumber
* ntdll.h (FILE_ID_BOTH_DIR_INFORMATION): Revert IndexNumber to FileId since it's actually right here. * fhandler_disk_file.cc: Accommodate above change. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
5b9873fa72
commit
3da81956e2
@ -1,3 +1,9 @@
|
||||
2015-12-09 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* ntdll.h (FILE_ID_BOTH_DIR_INFORMATION): Revert IndexNumber to FileId
|
||||
since it's actually right here.
|
||||
* fhandler_disk_file.cc: Accommodate above change.
|
||||
|
||||
2015-12-08 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* thread.cc (pthread::setcancelstate): Remove unnecessary locking.
|
||||
|
@ -494,7 +494,7 @@ fhandler_base::fstat_by_name (struct stat *buf)
|
||||
debug_printf ("%y = NtQueryDirectoryFile(%S)", status,
|
||||
pc.get_nt_native_path ());
|
||||
else
|
||||
ino = fdi_buf.fdi.IndexNumber.QuadPart;
|
||||
ino = fdi_buf.fdi.FileId.QuadPart;
|
||||
}
|
||||
}
|
||||
return fstat_helper (buf, 1);
|
||||
@ -2339,7 +2339,7 @@ go_ahead:
|
||||
FileNameLength = buf->FileNameLength;
|
||||
FileAttributes = buf->FileAttributes;
|
||||
if ((dir->__flags & dirent_set_d_ino))
|
||||
de->d_ino = buf->IndexNumber.QuadPart;
|
||||
de->d_ino = buf->FileId.QuadPart;
|
||||
}
|
||||
else if ((dir->__flags & dirent_nfs_d_ino))
|
||||
{
|
||||
|
@ -265,7 +265,7 @@ typedef struct _FILE_ID_BOTH_DIR_INFORMATION
|
||||
ULONG EaSize;
|
||||
CCHAR ShortNameLength;
|
||||
WCHAR ShortName[12];
|
||||
LARGE_INTEGER IndexNumber;
|
||||
LARGE_INTEGER FileId;
|
||||
WCHAR FileName[1];
|
||||
} FILE_ID_BOTH_DIR_INFORMATION, *PFILE_ID_BOTH_DIR_INFORMATION;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user