summaryrefslogtreecommitdiff
path: root/htetc
diff options
context:
space:
mode:
authorivan <ivan>2009-07-14 03:14:49 +0000
committerivan <ivan>2009-07-14 03:14:49 +0000
commitc4583d1531a5e8edea71a4e3c33d10e261ae9a07 (patch)
tree2f7f48249c0978a7df0bb5fe8637c886614e5dee /htetc
parentb898dc674b2d5158a2ecccd3424ad2ea7dc264e0 (diff)
fix warnings, from RT merge fallout
Diffstat (limited to 'htetc')
-rw-r--r--htetc/handler.pl7
1 files changed, 7 insertions, 0 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl
index a9431d3..711c32a 100644
--- a/htetc/handler.pl
+++ b/htetc/handler.pl
@@ -69,8 +69,15 @@ sub handler
} else {
+ local $SIG{__WARN__};
+ local $SIG{__DIE__};
+
RT::Init() if $RT::VERSION; #for lack of something else
+ #we don't want the RT error handlers under FS
+ undef $SIG{__WARN__};
+ undef $SIG{__DIE__};
+
$ah->interp($fs_interp);
}