diff options
Diffstat (limited to 'perl-install/network/adsl.pm')
-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 c14ac516d..6c0bcd279 100644 --- a/perl-install/network/adsl.pm +++ b/perl-install/network/adsl.pm @@ -126,7 +126,7 @@ sub load_firmware_floppy { system("cp /mnt/$file $destination"); } else { $failed ||= N("Firmware copy failed, file %s not found", $file) } - eval { $in->ask_warn('', $failed || N("Firmware copy succeed")) }; $in->exit if $@ =~ /wizcancel/; + eval { $in->ask_warn('', $failed || N("Firmware copy succeeded")) }; $in->exit if $@ =~ /wizcancel/; $failed and log::l($failed) && return; 1; |