Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'init/halt.c')
-rw-r--r--init/halt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/init/halt.c b/init/halt.c
index 207069e12..7e1b30f39 100644
--- a/init/halt.c
+++ b/init/halt.c
@@ -66,12 +66,12 @@ RB_AUTOBOOT
#endif /* !ENABLE_FEATURE_WTMP */
if (flags & 8) /* -w */
- return 0;
+ return EXIT_SUCCESS;
if (!(flags & 2)) /* no -n */
sync();
/* Perform action. */
- if (ENABLE_INIT && !(flags & 4)) {
+ if (ENABLE_INIT && !(flags & 4)) { /* no -f */
if (ENABLE_FEATURE_INITRD) {
pid_t *pidlist = find_pid_by_name("linuxrc");
if (pidlist[0] > 0)