aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-21 21:50:07 +0000
committerEric Andersen <andersen@codepoet.org>1999-11-21 21:50:07 +0000
commit0727458a97350158340b81c874ad7bce4378b96c (patch)
tree63f63b4cc4d1d41b6de95b4cc8fe7dfd0c7794b3 /init
parentfa213cd71efcff433febc7565582be102846c13d (diff)
downloadbusybox-w32-0727458a97350158340b81c874ad7bce4378b96c.tar.gz
busybox-w32-0727458a97350158340b81c874ad7bce4378b96c.tar.bz2
busybox-w32-0727458a97350158340b81c874ad7bce4378b96c.zip
Stuf
Diffstat (limited to 'init')
-rw-r--r--init/init.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/init/init.c b/init/init.c
index ce2f237c7..75a659911 100644
--- a/init/init.c
+++ b/init/init.c
@@ -447,7 +447,8 @@ extern int init_main(int argc, char **argv)
447 447
448 448
449#ifndef DEBUG_INIT 449#ifndef DEBUG_INIT
450 if (getpid() != 1) { 450 /* Expect to be PID 1 iff we are run as init (not linuxrc) */
451 if (getpid() != 1 && strstr(argv[0], "init")!=NULL ) {
451 usage( "init\n\nInit is the parent of all processes.\n\n" 452 usage( "init\n\nInit is the parent of all processes.\n\n"
452 "This version of init is designed to be run only by the kernel\n"); 453 "This version of init is designed to be run only by the kernel\n");
453 } 454 }