Merge tag 'upstream/3.3.2'
[debian/amanda] / perl / Amanda / Application.pm
index a0b22bed617cffef3c01f33e5ecc3d86b5cf78e6..e2dc296b3084f1f5533c38bb25c674a766b067d0 100644 (file)
@@ -114,6 +114,7 @@ require Amanda::Script_App;
 
 use strict;
 use warnings;
+use IO::Handle;
 use Amanda::Config qw( :init :getconf  config_dir_relative );
 
 
@@ -173,9 +174,10 @@ sub read_magic_block {
 sub _set_mesgout {
     my $self = shift;
 
-    my $mesgout_fd;
-    open ($mesgout_fd, '>&=3') || die("Can't open mesgout_fd: $!");
-    $self->{mesgout} = $mesgout_fd;
+    my $mesgout = IO::Handle->new();
+    $mesgout->fdopen(3,"a") || die("Can't open mesgout_fd: $!");
+    $mesgout->autoflush(1);
+    $self->{mesgout} = $mesgout;
 }
 
 1;