init: fix logically inverted FEATURE_EXTRA_QUIET check
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 14 Dec 2009 23:34:59 +0000 (00:34 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 14 Dec 2009 23:34:59 +0000 (00:34 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
init/init.c

index fb9c81e..b9c8924 100644 (file)
@@ -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