From fe15ae2309f0717a158f46e7f25aa963b5214af8 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 2 Feb 2004 14:50:14 +0000 Subject: (adsl_detect) fix modem detection so that harddrake get full device meta data rather than plain presence boolean --- perl-install/network/adsl.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'perl-install') diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm index eba319c6b..68ad935d8 100644 --- a/perl-install/network/adsl.pm +++ b/perl-install/network/adsl.pm @@ -86,9 +86,9 @@ sub adsl_probe_info { sub adsl_detect() { my $adsl = {}; require detect_devices; - $adsl->{speedtouch} = detect_devices::getSpeedtouch(); - $adsl->{sagem} = detect_devices::getSagem(); - $adsl->{eci} = detect_devices::getECI(); + ($adsl->{speedtouch}) = detect_devices::getSpeedtouch(); + ($adsl->{sagem}) = detect_devices::getSagem(); + ($adsl->{eci}) = detect_devices::getECI(); return $adsl; } -- cgit v1.2.1