summaryrefslogtreecommitdiffstats
path: root/urpm/msg.pm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm/msg.pm')
-rw-r--r--urpm/msg.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/msg.pm b/urpm/msg.pm
index daa1c55e..95938516 100644
--- a/urpm/msg.pm
+++ b/urpm/msg.pm
@@ -106,13 +106,13 @@ sub _message_input {
return $o_default_input;
}
$input = <STDIN>;
- defined $input or return $o_opts{default};
+ defined $input or return undef;
chomp $input;
$urpm::args::options{bug} and bug_log($input);
if ($o_opts{boolean}) {
$input =~ /^[$noexpr$yesexpr]?$/ and last;
} elsif ($o_opts{range}) {
- $input eq "" and $input = 1; #- defaults to first choice
+ $input eq "" and $input = $o_opts{default}; #- defaults to first choice
(defined $o_opts{range_min} ? $o_opts{range_min} : 1) <= $input && $input <= $o_opts{range} and last;
} else {
last;