diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-05 11:29:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-05 11:29:12 +0000 |
commit | 8ea8d2ad219666daab831fbeb56a5605dacda953 (patch) | |
tree | 177c997c125b6c942c5057664986b6cfaa0e172d /perl-install/Xconfigurator.pm | |
parent | 099d5615b0763d1fd7ade2bd7f9a54700bd7aec5 (diff) | |
download | drakx-8ea8d2ad219666daab831fbeb56a5605dacda953.tar drakx-8ea8d2ad219666daab831fbeb56a5605dacda953.tar.gz drakx-8ea8d2ad219666daab831fbeb56a5605dacda953.tar.bz2 drakx-8ea8d2ad219666daab831fbeb56a5605dacda953.tar.xz drakx-8ea8d2ad219666daab831fbeb56a5605dacda953.zip |
non-case dependent EISA comparison
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r-- | perl-install/Xconfigurator.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 016d510fd..8daf6a726 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -493,7 +493,7 @@ sub monitorConfiguration(;$$) { readMonitorsDB("$ENV{SHARE_PATH}/ldetect-lst/MonitorsDB"); if ($monitor->{EISA_ID}) { - if (my ($mon) = grep { $_->{eisa} eq $monitor->{EISA_ID} } values %monitors) { + if (my ($mon) = grep { lc($_->{eisa}) eq $monitor->{EISA_ID} } values %monitors) { add2hash($monitor, $mon); return $monitor; } |