diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-03-18 14:32:08 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-03-18 14:32:08 +0000 |
commit | a835e73a50c9b3e8e054046639159f9572b5a410 (patch) | |
tree | bd70eaa59bafc610badbead7212dd97eb261ae62 | |
parent | 1da09ab3b922d7f0ba76cbd3bbf97502c11d7817 (diff) | |
download | drakx-a835e73a50c9b3e8e054046639159f9572b5a410.tar drakx-a835e73a50c9b3e8e054046639159f9572b5a410.tar.gz drakx-a835e73a50c9b3e8e054046639159f9572b5a410.tar.bz2 drakx-a835e73a50c9b3e8e054046639159f9572b5a410.tar.xz drakx-a835e73a50c9b3e8e054046639159f9572b5a410.zip |
adapt to new adsl_detect prototype
-rw-r--r-- | perl-install/harddrake/data.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index cef0b9146..7a3060908 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -231,7 +231,7 @@ our @tree = detector => sub { require network::adsl; my $a = network::adsl::adsl_detect(); - $a ? f(grep { $_ } values %$a) : (); + $a ? f(grep { @$_ } values %$a) : (); }, # we do not check these b/c this need user interaction (auth, ...): checked_on_boot => 0, |