fix InitSignalHandlers patch
authorivan <ivan>
Tue, 18 May 2010 19:58:39 +0000 (19:58 +0000)
committerivan <ivan>
Tue, 18 May 2010 19:58:39 +0000 (19:58 +0000)
rt/lib/RT.pm
rt/lib/RT.pm.in

index f98a74b..5d2e704 100644 (file)
@@ -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
index 367086d..77b9d4c 100644 (file)
@@ -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