From 52f0e1cfd432bc74b499496ac182fc7e540fc9ce Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 24 Nov 2009 16:44:50 +0000 Subject: (format_bus_ids) do not display bogus "0" ids for hard disks (rationale: do not vivify ids) --- perl-install/standalone/harddrake2 | 2 ++ 1 file changed, 2 insertions(+) (limited to 'perl-install/standalone/harddrake2') diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index 02b0d08ce..97beec64b 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -491,6 +491,8 @@ undef $flush_guard; sub format_bus_ids { my ($device) = $_; + # do not vivify ids: + return if !($device->{vendor} && $device->{id}); foreach my $field (qw(vendor id subvendor subid)) { next if !$device->{$field}; $device->{$field} = sprintf("0x%04x", $device->{$field}); -- cgit v1.2.1