summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjeff <jeff>2010-02-15 14:41:35 +0000
committerjeff <jeff>2010-02-15 14:41:35 +0000
commit2a300c4d2932eb46503b76b47fc033d954b40e72 (patch)
tree2561179ce16771e5336d8f1b1c9dc18212506e31
parent0a4943c77a402ea5148da6229c229f729eb0fb7b (diff)
get rid of some very annoying and pointless noise
-rw-r--r--htetc/handler.pl7
1 files changed, 5 insertions, 2 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl
index 952d6203b..e2289a977 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);