aboutsummaryrefslogtreecommitdiff
path: root/init/init.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-02-19 12:08:38 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-02-19 12:08:38 +0000
commit99a61842df559f0cfc8613436b3bf89f4e757abf (patch)
treeb24a498292fb344b23a35b71622acc79b3e638ec /init/init.c
parent8617454027e596329851d54a5a2035fc602a9d4e (diff)
downloadbusybox-w32-99a61842df559f0cfc8613436b3bf89f4e757abf.tar.gz
busybox-w32-99a61842df559f0cfc8613436b3bf89f4e757abf.tar.bz2
busybox-w32-99a61842df559f0cfc8613436b3bf89f4e757abf.zip
init: HUP should not be temporarily set to "restart",
we use it for config reload, and we have QUIT for "restart".
Diffstat (limited to 'init/init.c')
-rw-r--r--init/init.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/init/init.c b/init/init.c
index 8d706fe1f..8eaf61f96 100644
--- a/init/init.c
+++ b/init/init.c
@@ -853,10 +853,7 @@ int init_main(int argc, char **argv)
853 } 853 }
854 /* Set up sig handlers -- be sure to 854 /* Set up sig handlers -- be sure to
855 * clear all of these in run() */ 855 * clear all of these in run() */
856 bb_signals(0 856 signal(SIGQUIT, exec_restart_action);
857 + (1 << SIGHUP)
858 + (1 << SIGQUIT)
859 , exec_restart_action);
860 bb_signals(0 857 bb_signals(0
861 + (1 << SIGUSR1) /* halt */ 858 + (1 << SIGUSR1) /* halt */
862 + (1 << SIGUSR2) /* poweroff */ 859 + (1 << SIGUSR2) /* poweroff */