File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
boot/freeldr/freeldr/lib/fs Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -526,18 +526,18 @@ static BOOLEAN NtfsCompareFileName(PCHAR FileName, PNTFS_INDEX_ENTRY IndexEntry)
526526 return FALSE;
527527
528528 /* Do case-sensitive compares for Posix file names. */
529- if (IndexEntry -> FileName .FileNameType == NTFS_FILE_NAME_POSIX )
530- {
531- for (i = 0 ; i < EntryFileNameLength ; i ++ )
532- if (EntryFileName [i ] != FileName [i ])
533- return FALSE;
534- }
535- else
536- {
529+ // if (IndexEntry->FileName.FileNameType == NTFS_FILE_NAME_POSIX)
530+ // {
531+ // for (i = 0; i < EntryFileNameLength; i++)
532+ // if (EntryFileName[i] != FileName[i])
533+ // return FALSE;
534+ // }
535+ // else
536+ // {
537537 for (i = 0 ; i < EntryFileNameLength ; i ++ )
538538 if (tolower (EntryFileName [i ]) != tolower (FileName [i ]))
539539 return FALSE;
540- }
540+ // }
541541
542542 return TRUE;
543543}
You can’t perform that action at this time.
0 commit comments