diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2002-11-07 14:53:11 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2002-11-07 14:53:11 +0000 |
commit | 48822f696b6c343afe3181e41f794451c69b1550 (patch) | |
tree | 933200faa72e179d31e605995ea49970d0b520d9 /perl-install/detect_devices.pm | |
parent | deda8b054aa5fc3aa86afa5e5534d0313c75701d (diff) | |
download | drakx-48822f696b6c343afe3181e41f794451c69b1550.tar drakx-48822f696b6c343afe3181e41f794451c69b1550.tar.gz drakx-48822f696b6c343afe3181e41f794451c69b1550.tar.bz2 drakx-48822f696b6c343afe3181e41f794451c69b1550.tar.xz drakx-48822f696b6c343afe3181e41f794451c69b1550.zip |
perl checker fixes
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 5ea0e8943..6072d8d60 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -152,7 +152,7 @@ sub get_usb_storage_info { if (@choices > 1) { @choices = grep { $_->{info} =~ /^\Q$usbs{$host}{vendor_name}/ } @choices; @choices or log::l("weird, can't find the good entry host$host from /proc/scsi/usb-storage-*/* in /proc/scsi/scsi"), next; - @choices == 1 or log::l("argh, can't determine the good entry host$host from /proc/scsi/usb-storage-*/* in /proc/scsi/scsi"), next; + @choices == 1 or log::l("argh, can't determine the good entry host$host from /proc/scsi/usb-storage-*/* in /proc/scsi/scsi"), next } add2hash($choices[0], $usbs{$host}); push @informed, $choices[0]; @@ -494,7 +494,7 @@ sub stringlist { $_->{description} eq '(null)' ? sprintf("Vendor=0x%04x Device=0x%04x", $_->{vendor}, $_->{id}) : $_->{description}, $_->{media_type} ? sprintf(" [%s]", $_->{media_type}) : '', $_->{subid} && $_->{subid} != 0xffff ? sprintf(" SubVendor=0x%04x SubDevice=0x%04x", $_->{subvendor}, $_->{subid}) : '', - ); + ) } probeall(@_); } |