diff options
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakauth | 2 |
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; |