summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/drakpxe4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakpxe b/perl-install/standalone/drakpxe
index 7fbc84657..a1d1f7027 100755
--- a/perl-install/standalone/drakpxe
+++ b/perl-install/standalone/drakpxe
@@ -140,11 +140,11 @@ if (@intf < 1) {
quit_global($in, 0);
} elsif (@intf > 1) {
#- there are more than one interface, we need to choose one of them.
- @intf = ($in->ask_from_listf(N("Choose the network interface"),
+ @intf = $in->ask_from_listf(N("Choose the network interface"),
N("Please choose which network interface will be used for the dhcp server."),
sub { N("Interface %s (on network %s)", $_[0]{DEVICE}, $_[0]{NETWORK}) },
\@intf,
- ) or goto begin);
+ ) or goto begin;
}