From 99a61842df559f0cfc8613436b3bf89f4e757abf Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 19 Feb 2008 12:08:38 +0000 Subject: [PATCH] init: HUP should not be temporarily set to "restart", we use it for config reload, and we have QUIT for "restart". --- init/init.c | 5 +---- 1 file changed, 1 insertion(+), 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) } /* Set up sig handlers -- be sure to * clear all of these in run() */ - bb_signals(0 - + (1 << SIGHUP) - + (1 << SIGQUIT) - , exec_restart_action); + signal(SIGQUIT, exec_restart_action); bb_signals(0 + (1 << SIGUSR1) /* halt */ + (1 << SIGUSR2) /* poweroff */ -- 2.25.1