summaryrefslogtreecommitdiff
path: root/htetc
diff options
context:
space:
mode:
authorivan <ivan>2009-09-15 19:45:38 +0000
committerivan <ivan>2009-09-15 19:45:38 +0000
commitbbc003b77d2070f53a29a84cccce530f01db691e (patch)
tree4b60f280b4eee1151bc5595913b84e3fc1047217 /htetc
parent9ecb64360568b205334ae23e1051249cb56491b6 (diff)
eliminate "Use of uninitialized value in undef operator at /etc/freeside/handler.pl line 79/80" errors
Diffstat (limited to 'htetc')
-rw-r--r--htetc/handler.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl
index 4ce6586..952d620 100644
--- a/htetc/handler.pl
+++ b/htetc/handler.pl
@@ -76,8 +76,8 @@ 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__};
- undef $SIG{__DIE__};
+ undef $SIG{__WARN__} if defined($SIG{__WARN__});
+ undef $SIG{__DIE__} if defined($SIG{__DIE__} );
$ah->interp($fs_interp);