diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/adsl.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm index eb53bdc3d..f2722f262 100644 --- a/perl-install/network/adsl.pm +++ b/perl-install/network/adsl.pm @@ -317,7 +317,7 @@ user "$net->{adsl}{login}" @modules or @modules = qw(ppp_synctty ppp_async ppp_generic n_hdlc); #- required for pppoe/pptp connections #- pppoa connections need the pppoatm module #- pppd should run "modprobe pppoatm", but it will fail during install - push @modules, 'pppoatm' if $adsl_type = 'pppoa'; + push @modules, 'pppoatm' if $adsl_type eq 'pppoa'; foreach (@modules) { eval { modules::load($_) } or log::l("failed to load $_ module: $@"); } |