diff options
author | Francois Pons <fpons@mandriva.com> | 2001-09-18 16:28:51 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-09-18 16:28:51 +0000 |
commit | a3265d47b92aac1d5c7af7ecd23f2cfc889f29a8 (patch) | |
tree | 47242518d574d039a763c0d8badd8ef93d056622 /perl-install | |
parent | 7a2aaaaf00ecc7a295947a233f73cb7fe48c8b3a (diff) | |
download | drakx-a3265d47b92aac1d5c7af7ecd23f2cfc889f29a8.tar drakx-a3265d47b92aac1d5c7af7ecd23f2cfc889f29a8.tar.gz drakx-a3265d47b92aac1d5c7af7ecd23f2cfc889f29a8.tar.bz2 drakx-a3265d47b92aac1d5c7af7ecd23f2cfc889f29a8.tar.xz drakx-a3265d47b92aac1d5c7af7ecd23f2cfc889f29a8.zip |
removed full pci probe for stringlist (used for generating report_bug).
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index c448d5615..0b59b9eac 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -272,7 +272,7 @@ sub stringlist { $_->{media_type} ? sprintf(" [%s]", $_->{media_type}) : '', $_->{subid} && $_->{subid} != 0xffff ? sprintf(" SubVendor=0x%04x SubDevice=0x%04x", $_->{subvendor}, $_->{subid}) : '', ); - } probeall(1); + } probeall(); } sub check { my ($l) = @_; |