Case insensitive search for win.ini.

This commit is contained in:
Donn Miller 2001-06-07 22:25:06 +00:00 committed by Alexandre Julliard
parent a72491e420
commit 6562310d41
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ sub FindWindowsDir {
foreach(@FATD) {
my $ThisDrive = shift(@FATD);
my $MntPoint = $ThisDrive->[1];
push(@wininis, `find $MntPoint -name win.ini -print`);
push(@wininis, `find $MntPoint -iname win.ini -print`);
}
foreach $winini (@wininis) {
chomp $winini;