summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-08-05 02:31:54 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-08-05 02:31:54 +0000
commitbffb9406c86a6f33cb7887e97830b790119a2965 (patch)
tree391184f3a51f9b3f4f7f0be03e6df2ecf4e2b49d /perl-install
parent6f226a0b600c2179a6e442dcab81c7ba51fb6b1d (diff)
downloaddrakx-backup-do-not-use-bffb9406c86a6f33cb7887e97830b790119a2965.tar
drakx-backup-do-not-use-bffb9406c86a6f33cb7887e97830b790119a2965.tar.gz
drakx-backup-do-not-use-bffb9406c86a6f33cb7887e97830b790119a2965.tar.bz2
drakx-backup-do-not-use-bffb9406c86a6f33cb7887e97830b790119a2965.tar.xz
drakx-backup-do-not-use-bffb9406c86a6f33cb7887e97830b790119a2965.zip
(adsl_conf_backend) fix error message
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/network/adsl.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm
index a0cd687bf..c43b82459 100644
--- a/perl-install/network/adsl.pm
+++ b/perl-install/network/adsl.pm
@@ -319,7 +319,7 @@ TYPE=$kind
unless ($::isStandalone) {
$modems{$adsl_device}{modules} and eval { modules::load(@{$modems{$adsl_device}{modules}}) }
- or log::l "failled to load @{$modems{$adsl_device}{modules}} 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});
}
}