Commit 6562310d authored by Donn Miller's avatar Donn Miller Committed by Alexandre Julliard

Case insensitive search for win.ini.

parent a72491e4
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment