aboutsummaryrefslogtreecommitdiff
path: root/halt.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-12-09 22:39:55 +0000
committerEric Andersen <andersen@codepoet.org>1999-12-09 22:39:55 +0000
commit6805d5d69e9c2be264e62cf53c86ca3e5a929d31 (patch)
tree2ab43322a4fc33782d322ef029d33a46f3e8c5dd /halt.c
parentf95ca97d1bb94307ee0b8ed95d329dc9d6ccec85 (diff)
downloadbusybox-6805d5d69e9c2be264e62cf53c86ca3e5a929d31.tar.gz
Adjustments for Johns init stuff,
-Erik
Diffstat (limited to 'halt.c')
-rw-r--r--halt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/halt.c b/halt.c
index ecc6e8f30..23eb23c30 100644
--- a/halt.c
+++ b/halt.c
@@ -26,6 +26,7 @@
extern int
halt_main(int argc, char ** argv)
{
- exit( kill(1, SIGUSR1));
+ /* don't assume init's pid == 1 */
+ exit( kill(findInitPid(), SIGUSR1));
}