diff options
Diffstat (limited to 'perl-install/harddrake/data.pm')
-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, |