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
path: root/init
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-12-15 02:34:59 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2009-12-15 02:34:59 +0300
commitd7171c114028815df4e92f9c26875f1d60c6af2a (patch)
tree6393d02f0ed07856a438ca4dfa4a9c7f56f9b02f /init
parent1a8de6f8a2ae73568342a6f9768b937072ca4b3f (diff)
init: fix logically inverted FEATURE_EXTRA_QUIET check
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'init')
-rw-r--r--init/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init.c b/init/init.c
index fb9c81ea4..b9c892407 100644
--- a/init/init.c
+++ b/init/init.c
@@ -873,7 +873,7 @@ int init_main(int argc UNUSED_PARAM, char **argv)
if (argv[1])
xsetenv("RUNLEVEL", argv[1]);
-#if ENABLE_FEATURE_EXTRA_QUIET
+#if !ENABLE_FEATURE_EXTRA_QUIET
/* Hello world */
message(L_CONSOLE | L_LOG, "init started: %s", bb_banner);
#endif