mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 05:22:56 +00:00
[NTFS] - Fix POSIX rules. Fix accessing long filenames created in Windows when 8dot3 name creation is disabled.
Whether or not a filename should be interpreted as case-sensitive is dependent on a flag passed to the driver when a file is created (opened); it's separate from the namespace associated with the file being accessed. svn path=/branches/GSoC_2016/NTFS/; revision=75178
This commit is contained in:
parent
98ddf610bc
commit
032be02954
8 changed files with 185 additions and 44 deletions
|
@ -627,7 +627,8 @@ NtfsQueryDirectory(PNTFS_IRP_CONTEXT IrpContext)
|
|||
&Ccb->Entry,
|
||||
&FileRecord,
|
||||
&MFTRecord,
|
||||
Fcb->MFTIndex);
|
||||
Fcb->MFTIndex,
|
||||
(Stack->Flags & SL_CASE_SENSITIVE));
|
||||
|
||||
if (NT_SUCCESS(Status))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue