From 71841bb57558a93d8bfb7d44ccca31f720dbdb0b Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 7 Apr 2009 15:20:58 +0000 Subject: when device has no description, use vendor string (and do not use defined() as we don't care about empty strings) --- perl-install/harddrake/data.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/harddrake/data.pm') diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index f72ef0e86..e100592d8 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -582,8 +582,8 @@ sub custom_id { $device->{"Socket Designation"} ? "$device->{name} (" . $device->{"Socket Designation"} . ")" : $device->{name} ? $device->{name} : - (defined($device->{description}) ? $device->{description} : - (defined($device->{Vendor}) ? $device->{Vendor} : $str))); + (($device->{description}) ? $device->{description} : + (($device->{Vendor}) ? $device->{Vendor} : $str))); } 1; -- cgit v1.2.1