diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-07 19:30:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-07 19:30:28 +0000 |
commit | 4c95a28461b46f05787c07883c44319f7bfe33e3 (patch) | |
tree | 6407e7445e77f9134643d7193455295b38a079c7 | |
parent | 3312b0b626cac6f1945051f2229501971d82e528 (diff) | |
download | busybox-w32-4c95a28461b46f05787c07883c44319f7bfe33e3.tar.gz busybox-w32-4c95a28461b46f05787c07883c44319f7bfe33e3.tar.bz2 busybox-w32-4c95a28461b46f05787c07883c44319f7bfe33e3.zip |
Fix for bug #1003 -- BusyBox should now poweroff when asked to
do so... Fix thanks to Matt Kraai <kraai@alumni.carnegiemellon.edu>
-Erik
-rw-r--r-- | init.c | 2 | ||||
-rw-r--r-- | init/init.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -887,7 +887,7 @@ extern int init_main(int argc, char **argv) | |||
887 | /* Set up sig handlers -- be sure to | 887 | /* Set up sig handlers -- be sure to |
888 | * clear all of these in run() */ | 888 | * clear all of these in run() */ |
889 | signal(SIGUSR1, halt_signal); | 889 | signal(SIGUSR1, halt_signal); |
890 | signal(SIGUSR2, reboot_signal); | 890 | signal(SIGUSR2, halt_signal); |
891 | signal(SIGINT, reboot_signal); | 891 | signal(SIGINT, reboot_signal); |
892 | signal(SIGTERM, reboot_signal); | 892 | signal(SIGTERM, reboot_signal); |
893 | #if defined BB_FEATURE_INIT_CHROOT | 893 | #if defined BB_FEATURE_INIT_CHROOT |
diff --git a/init/init.c b/init/init.c index 0f6a9bc9b..35f2255b5 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -887,7 +887,7 @@ extern int init_main(int argc, char **argv) | |||
887 | /* Set up sig handlers -- be sure to | 887 | /* Set up sig handlers -- be sure to |
888 | * clear all of these in run() */ | 888 | * clear all of these in run() */ |
889 | signal(SIGUSR1, halt_signal); | 889 | signal(SIGUSR1, halt_signal); |
890 | signal(SIGUSR2, reboot_signal); | 890 | signal(SIGUSR2, halt_signal); |
891 | signal(SIGINT, reboot_signal); | 891 | signal(SIGINT, reboot_signal); |
892 | signal(SIGTERM, reboot_signal); | 892 | signal(SIGTERM, reboot_signal); |
893 | #if defined BB_FEATURE_INIT_CHROOT | 893 | #if defined BB_FEATURE_INIT_CHROOT |