-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
src/lib/libast/features/lib, src/lib/libast/path/pathicase.c: - FAT32 file systems on Linux don't support FS_CASEFOLD_FL, which caused globbing to break. Reproducer using a UEFI boot partition: $ echo /boot/eF* /boot/eF* This is fixed by checking for FAT attributes with ioctl, then checking for FS_CASEFOLD_FL if that fails. - The check for FS_CASEFOLD_FL didn't work correctly; I still wasn't able to get --globcasedetect to work on a case-insensitive ext4 folder. Fix that by adding missing parentheses.
- Loading branch information
Showing
2 changed files
with
27 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters