summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakauth
diff options
context:
space:
mode:
authorVicent Guardiola <vguardiola@mandriva.com>2004-07-20 08:20:01 +0000
committerVicent Guardiola <vguardiola@mandriva.com>2004-07-20 08:20:01 +0000
commit64e2928012e7e54e3d05f178828ef60ecd9f460c (patch)
tree24d4c4beca8fa1ea16eb06a61db3231dfcee543b /perl-install/standalone/drakauth
parentae5ac56139dd29e9c5138b7e9938b8c1da6eb04a (diff)
downloaddrakx-64e2928012e7e54e3d05f178828ef60ecd9f460c.tar
drakx-64e2928012e7e54e3d05f178828ef60ecd9f460c.tar.gz
drakx-64e2928012e7e54e3d05f178828ef60ecd9f460c.tar.bz2
drakx-64e2928012e7e54e3d05f178828ef60ecd9f460c.tar.xz
drakx-64e2928012e7e54e3d05f178828ef60ecd9f460c.zip
Add type => 'list' in ask_from
Diffstat (limited to 'perl-install/standalone/drakauth')
-rwxr-xr-xperl-install/standalone/drakauth2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakauth b/perl-install/standalone/drakauth
index f091a3000..c48792ad9 100755
--- a/perl-install/standalone/drakauth
+++ b/perl-install/standalone/drakauth
@@ -23,7 +23,7 @@ my $kind = authentication::to_kind($authentication);
main:
$in->ask_from('', '',
[
- { label => N("Authentication"), val => \$kind, list => [ authentication::kinds() ], format => \&authentication::kind2description },
+ { label => N("Authentication"), val => \$kind, type => 'list' , list => [ authentication::kinds() ], format => \&authentication::kind2description },
]) or $in->exit;
authentication::ask_parameters($in, $netc, $authentication, $kind) or goto main;