summaryrefslogtreecommitdiff
path: root/rt
diff options
context:
space:
mode:
authorivan <ivan>2010-05-18 19:58:39 +0000
committerivan <ivan>2010-05-18 19:58:39 +0000
commit363f89201b3ad61da89f2141373864e7e28943eb (patch)
treeb35d369f7c190f2d1cd0722c547529c14192c20d /rt
parentb0e7ee2a549e8d470109d3424521bc18ef973c80 (diff)
fix InitSignalHandlers patch
Diffstat (limited to 'rt')
-rw-r--r--rt/lib/RT.pm4
-rw-r--r--rt/lib/RT.pm.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/rt/lib/RT.pm b/rt/lib/RT.pm
index f98a74bef..5d2e70425 100644
--- a/rt/lib/RT.pm
+++ b/rt/lib/RT.pm
@@ -354,11 +354,13 @@ sub InitLogging {
));
}
}
- InitSignalHandlers();
+ InitSignalHandlers(%arg);
}
sub InitSignalHandlers {
+ my %arg = @_;
+
# Signal handlers
## This is the default handling of warnings and die'ings in the code
## (including other used modules - maybe except for errors catched by
diff --git a/rt/lib/RT.pm.in b/rt/lib/RT.pm.in
index 367086de4..77b9d4c9b 100644
--- a/rt/lib/RT.pm.in
+++ b/rt/lib/RT.pm.in
@@ -354,11 +354,13 @@ sub InitLogging {
));
}
}
- InitSignalHandlers();
+ InitSignalHandlers(%arg);
}
sub InitSignalHandlers {
+ my %arg = @_;
+
# Signal handlers
## This is the default handling of warnings and die'ings in the code
## (including other used modules - maybe except for errors catched by