summaryrefslogtreecommitdiff
path: root/htetc
diff options
context:
space:
mode:
authorjeff <jeff>2010-02-15 14:39:13 +0000
committerjeff <jeff>2010-02-15 14:39:13 +0000
commit649b07e7ea35f96d814ba1b7020ab07268355ade (patch)
treeadbadc544a4a439699c39d0b2e5aac039e60671c /htetc
parent3b1d4f57601233548ea150c74008db47a953462e (diff)
get rid of some very annoying and pointless noise
Diffstat (limited to 'htetc')
-rw-r--r--htetc/handler.pl7
1 files changed, 5 insertions, 2 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl
index 38af4cc..af7ac7d 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);