diff options
Diffstat (limited to 'perl-install/interactive.pm')
-rw-r--r-- | perl-install/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index 6f7b74fd0..8cef5ed7e 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -228,7 +228,7 @@ sub ask_from_entries_ref($$$$;$%) { { val => $_ } } else { if (@{$_->{list} || []} > 1) { - add2hash($_, { not_edit => 1 }) + add2hash_($_, { not_edit => 1 }); add2hash_($_, { type => 'list' }); ${$_->{val}} = $_->{list}[0] if $_->{not_edit} && !member(${$_->{val}}, @{$_->{list}}); } |