X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=perl%2FAmanda%2FApplication.swg;h=912569e6ee6c32abd66f036a8dd95051dc97db8b;hb=691567b16c13087b31ee4c2b6d038e57872fae82;hp=67edaa0b05cfc86adabbc05f4cd0aadd799275be;hpb=fd48f3e498442f0cbff5f3606c7c403d0566150e;p=debian%2Famanda diff --git a/perl/Amanda/Application.swg b/perl/Amanda/Application.swg index 67edaa0..912569e 100644 --- a/perl/Amanda/Application.swg +++ b/perl/Amanda/Application.swg @@ -1,9 +1,10 @@ /* - * Copyright (c) 2008, 2009, 2010 Zmanda, Inc. All Rights Reserved. + * Copyright (c) 2008-2012 Zmanda, Inc. All Rights Reserved. * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 as published - * by the Free Software Foundation. + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY @@ -31,6 +32,7 @@ require Amanda::Script_App; use strict; use warnings; +use IO::Handle; use Amanda::Config qw( :init :getconf config_dir_relative ); @@ -86,6 +88,16 @@ sub read_magic_block { return $type; } + +sub _set_mesgout { + my $self = shift; + + my $mesgout = IO::Handle->new(); + $mesgout->fdopen(3,"a") || die("Can't open mesgout_fd: $!"); + $mesgout->autoflush(1); + $self->{mesgout} = $mesgout; +} + %} /* C interfaces used by the above */