summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfigurator.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-07-19 12:47:27 +0000
committerFrancois Pons <fpons@mandriva.com>2001-07-19 12:47:27 +0000
commitb03712e626522252f3b3ea83b6f6643749b569ea (patch)
treec9d9f44285018df1f96de98aa0576ceedf843815 /perl-install/Xconfigurator.pm
parentc3daceec1d39de3f970cab7d41ec1293ded82444 (diff)
downloaddrakx-b03712e626522252f3b3ea83b6f6643749b569ea.tar
drakx-b03712e626522252f3b3ea83b6f6643749b569ea.tar.gz
drakx-b03712e626522252f3b3ea83b6f6643749b569ea.tar.bz2
drakx-b03712e626522252f3b3ea83b6f6643749b569ea.tar.xz
drakx-b03712e626522252f3b3ea83b6f6643749b569ea.zip
fixed problable freeze on pci probe.
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r--perl-install/Xconfigurator.pm2
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")) };