From 88947dd05e28a3b793b16dfd6db1b5414ca99017 Mon Sep 17 00:00:00 2001 From: Robert Griebl Date: Thu, 18 Jul 2002 23:59:17 +0000 Subject: Added a compile time option to suppress the "Using fallback.." message if no busybox.conf file is existant. --- applets/applets.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'applets/applets.c') diff --git a/applets/applets.c b/applets/applets.c index 1a27419..a6e6598 100644 --- a/applets/applets.c +++ b/applets/applets.c @@ -223,12 +223,14 @@ void check_suid ( struct BB_applet *applet ) return; } else { +#ifndef CONFIG_FEATURE_SUID_CONFIG_QUIET static int onetime = 0; if ( !onetime ) { onetime = 1; fprintf ( stderr, "Using fallback suid method\n" ); } +#endif } #endif -- cgit v1.1