diff options
Diffstat (limited to 'urpm/msg.pm')
-rw-r--r-- | urpm/msg.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/urpm/msg.pm b/urpm/msg.pm index e46638b0..bf4b3e54 100644 --- a/urpm/msg.pm +++ b/urpm/msg.pm @@ -72,11 +72,7 @@ sub message_input { my ($msg, $default_input, %opts) = @_; my $input; while (1) { - if ($urpm::args::options{bug} || !defined fileno ::SAVEOUT) { - print STDOUT $msg; - } else { - print ::SAVEOUT $msg; - } + print $msg; if ($default_input) { $urpm::args::options{bug} and bug_log($default_input); return $default_input; |