diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-05 02:33:21 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-05 02:33:21 +0000 |
commit | bd991a1b73d7b0fb7cc9bfab9474ecf87a2f816c (patch) | |
tree | 9e4787070e405e4972d9afdde0c48acd4759a28c /perl-install/network/adsl.pm | |
parent | bffb9406c86a6f33cb7887e97830b790119a2965 (diff) | |
download | drakx-bd991a1b73d7b0fb7cc9bfab9474ecf87a2f816c.tar drakx-bd991a1b73d7b0fb7cc9bfab9474ecf87a2f816c.tar.gz drakx-bd991a1b73d7b0fb7cc9bfab9474ecf87a2f816c.tar.bz2 drakx-bd991a1b73d7b0fb7cc9bfab9474ecf87a2f816c.tar.xz drakx-bd991a1b73d7b0fb7cc9bfab9474ecf87a2f816c.zip |
quiet perl_checker
Diffstat (limited to 'perl-install/network/adsl.pm')
-rw-r--r-- | perl-install/network/adsl.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm index c43b82459..49c33d707 100644 --- a/perl-install/network/adsl.pm +++ b/perl-install/network/adsl.pm @@ -318,8 +318,8 @@ TYPE=$kind write_cnx_script($netc); unless ($::isStandalone) { - $modems{$adsl_device}{modules} and eval { modules::load(@{$modems{$adsl_device}{modules}}) } - or log::l "failled to load " . join('', @{$modems{$adsl_device}{modules}}), " modules: $@"; + $modems{$adsl_device}{modules} && eval { modules::load(@{$modems{$adsl_device}{modules}}) } + or log::l("failled to load " . join('', @{$modems{$adsl_device}{modules}}), " modules: $@"); $modems{$adsl_device}{start} and run_program::rooted($::prefix, $modems{$adsl_device}{start}); } } |