diff options
-rw-r--r-- | urpm/msg.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/msg.pm b/urpm/msg.pm index 95938516..c479f5b8 100644 --- a/urpm/msg.pm +++ b/urpm/msg.pm @@ -112,7 +112,7 @@ sub _message_input { if ($o_opts{boolean}) { $input =~ /^[$noexpr$yesexpr]?$/ and last; } elsif ($o_opts{range}) { - $input eq "" and $input = $o_opts{default}; #- defaults to first choice + $input eq "" and $input = $o_opts{default} || 1; #- defaults to first choice (defined $o_opts{range_min} ? $o_opts{range_min} : 1) <= $input && $input <= $o_opts{range} and last; } else { last; |