[git commit master] init: fix logically inverted FEATURE_EXTRA_QUIET check

Denys Vlasenko vda.linux at googlemail.com
Mon Dec 14 23:34:59 UTC 2009


commit: http://git.busybox.net/busybox/commit/?id=d7171c114028815df4e92f9c26875f1d60c6af2a
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 init/init.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/init/init.c b/init/init.c
index fb9c81e..b9c8924 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
-- 
1.6.3.3



More information about the busybox-cvs mailing list