summaryrefslogtreecommitdiffstats
path: root/perl-install/network/netconnect.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-08-18 08:30:38 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-08-18 08:30:38 +0000
commit5b5f63e4b5b0cdeddec96901863c7c387bed26ce (patch)
tree9144ab223d4d765260f7bee864bd3c6f9b995d8d /perl-install/network/netconnect.pm
parent419abdd72f1e422906224dc36a4379eab0c2c417 (diff)
downloaddrakx-backup-do-not-use-5b5f63e4b5b0cdeddec96901863c7c387bed26ce.tar
drakx-backup-do-not-use-5b5f63e4b5b0cdeddec96901863c7c387bed26ce.tar.gz
drakx-backup-do-not-use-5b5f63e4b5b0cdeddec96901863c7c387bed26ce.tar.bz2
drakx-backup-do-not-use-5b5f63e4b5b0cdeddec96901863c7c387bed26ce.tar.xz
drakx-backup-do-not-use-5b5f63e4b5b0cdeddec96901863c7c387bed26ce.zip
fix some previous callback in drakconnect wizard mode
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r--perl-install/network/netconnect.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index f59846571..3b4354f95 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -176,7 +176,7 @@ If you don't want to use the auto detection, deselect the checkbox.
$netc->{internet_cnx_choice} = (keys %{$netc->{internet_cnx}})[0];
}
- eval { $in->ask_yesorno(N("Network configuration"), N("Configuration is complete, do you want to apply settings ?"), 1) or goto step_2_2 };
+ eval { my ($r) = $in->ask_yesorno(N("Network configuration"), N("Configuration is complete, do you want to apply settings ?"), 1) or goto step_2_2 };
$in->exit(0) if $@ =~ /wizcancel/;
member($netc->{internet_cnx_choice}, ('adsl', 'isdn')) and $netc->{at_boot} = $in->ask_yesorno(N("Network Configuration Wizard"), N("Do you want to start the connection at boot?"));