diff options
author | jeff <jeff> | 2010-02-15 14:39:13 +0000 |
---|---|---|
committer | jeff <jeff> | 2010-02-15 14:39:13 +0000 |
commit | 649b07e7ea35f96d814ba1b7020ab07268355ade (patch) | |
tree | adbadc544a4a439699c39d0b2e5aac039e60671c /htetc | |
parent | 3b1d4f57601233548ea150c74008db47a953462e (diff) |
get rid of some very annoying and pointless noise
Diffstat (limited to 'htetc')
-rw-r--r-- | htetc/handler.pl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl index 38af4cc8c..af7ac7d5e 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -76,8 +76,11 @@ sub handler RT::Init() if $RT::VERSION; #for lack of something else #we don't want the RT error handlers under FS - undef($SIG{__WARN__}) if defined($SIG{__WARN__}); - undef($SIG{__DIE__}) if defined($SIG{__DIE__} ); + { + local $^W = 0; + undef($SIG{__WARN__}) if defined($SIG{__WARN__}); + undef($SIG{__DIE__}) if defined($SIG{__DIE__} ); + } $ah->interp($fs_interp); |