diff options
author | Francois Pons <fpons@mandriva.com> | 2001-07-19 12:47:27 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-07-19 12:47:27 +0000 |
commit | b03712e626522252f3b3ea83b6f6643749b569ea (patch) | |
tree | c9d9f44285018df1f96de98aa0576ceedf843815 | |
parent | c3daceec1d39de3f970cab7d41ec1293ded82444 (diff) | |
download | drakx-b03712e626522252f3b3ea83b6f6643749b569ea.tar drakx-b03712e626522252f3b3ea83b6f6643749b569ea.tar.gz drakx-b03712e626522252f3b3ea83b6f6643749b569ea.tar.bz2 drakx-b03712e626522252f3b3ea83b6f6643749b569ea.tar.xz drakx-b03712e626522252f3b3ea83b6f6643749b569ea.zip |
fixed problable freeze on pci probe.
-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 12b8fcdde..a39adb6f1 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -148,7 +148,7 @@ sub keepOnlyLegalModes { sub cardConfigurationAuto() { my @cards; - if (my @c = grep { $_->{driver} =~ /(Card|Server):/ } detect_devices::probeall(1)) { + if (my @c = grep { $_->{driver} =~ /(Card|Server):/ } detect_devices::probeall()) { foreach my $i (0..$#c) { local $_ = $c[$i]->{driver}; my $card = { identifier => ($c[$i]{description} . (@c > 1 && " $i")) }; |