diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-08-06 06:15:14 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-08-06 06:15:14 +0000 |
commit | 6ad8b0c504a0f6a2febc05d6af89c4d0fc2c1e9c (patch) | |
tree | 18cdea6a5af6a3d13a4ca19f98eed2938c29e3af | |
parent | 239e8e6793d145832b6ce459a07865b1be723162 (diff) | |
download | drakx-6ad8b0c504a0f6a2febc05d6af89c4d0fc2c1e9c.tar drakx-6ad8b0c504a0f6a2febc05d6af89c4d0fc2c1e9c.tar.gz drakx-6ad8b0c504a0f6a2febc05d6af89c4d0fc2c1e9c.tar.bz2 drakx-6ad8b0c504a0f6a2febc05d6af89c4d0fc2c1e9c.tar.xz drakx-6ad8b0c504a0f6a2febc05d6af89c4d0fc2c1e9c.zip |
fix titypo
-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 47925dce8..8008378d0 100644 --- a/perl-install/network/adsl.pm +++ b/perl-install/network/adsl.pm @@ -326,7 +326,7 @@ TYPE=$kind } or log::l("failed to mount usbdevfs"); my @modules = (@{$modems{$adsl_device}{modules}}, map { $_->[1] } @{$modems{$adsl_device}{aliases}}); @modules && eval { modules::load(@modules) } - or log::l("failed to load " . join('', @modules), " modules: $@"); + or log::l("failed to load " . join(' ', @modules), " modules: $@"); $modems{$adsl_device}{start} and run_program::rooted($::prefix, $modems{$adsl_device}{start}); } } |