summaryrefslogtreecommitdiff
path: root/scripts/Dpkg/Exit.pm
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Dpkg/Exit.pm')
-rw-r--r--scripts/Dpkg/Exit.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Dpkg/Exit.pm b/scripts/Dpkg/Exit.pm
index 28de118c0..d69d37f28 100644
--- a/scripts/Dpkg/Exit.pm
+++ b/scripts/Dpkg/Exit.pm
@@ -26,8 +26,8 @@ sub exit_handler {
exit(127);
}
-$SIG{'INT'} = \&exit_handler;
-$SIG{'HUP'} = \&exit_handler;
-$SIG{'QUIT'} = \&exit_handler;
+$SIG{INT} = \&exit_handler;
+$SIG{HUP} = \&exit_handler;
+$SIG{QUIT} = \&exit_handler;
1;