diff options
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/adsl.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm index 7a109f3c1..a576ccef8 100644 --- a/perl-install/network/adsl.pm +++ b/perl-install/network/adsl.pm @@ -127,8 +127,7 @@ sub load_firmware_floppy { my $_b = before_leaving { fs::umount("/mnt") }; if (-e "/mnt/$file") { - cp_af("/mnt/$file"); - system("cp /mnt/$file $destination"); + cp_af("/mnt/$file $destination"); } else { $failed ||= N("Firmware copy failed, file %s not found", $file) } eval { $in->ask_warn('', $failed || N("Firmware copy succeeded")) }; $in->exit if $@ =~ /wizcancel/; |