diff options
-rw-r--r-- | perl-install/network/modem.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/network/modem.pm b/perl-install/network/modem.pm index 0ce904902..9cd9750ef 100644 --- a/perl-install/network/modem.pm +++ b/perl-install/network/modem.pm @@ -46,6 +46,8 @@ sub ppp_read_conf { $modem->{auto_gateway} ||= defined $modem->{Gateway} && $modem->{Gateway} ne '0.0.0.0' ? N("Manual") : N("Automatic"); $modem->{auto_ip} ||= defined $modem->{IPAddr} && $modem->{IPAddr} ne '0.0.0.0' ? N("Manual") : N("Automatic"); $modem->{auto_dns} ||= $modem->{dns1} || $modem->{dns2} ? N("Manual") : N("Automatic"); + + $modem; } #-----modem conf |