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:
authorRobert Griebl <griebl@gmx.de>2002-07-19 03:59:17 +0400
committerRobert Griebl <griebl@gmx.de>2002-07-19 03:59:17 +0400
commit88947dd05e28a3b793b16dfd6db1b5414ca99017 (patch)
tree02c3da3a9f7dcc562517bae2bc7cfca107d5cbd5 /applets
parent2c0d0f00513e44f8545eb0756f874a25f54f9b40 (diff)
Added a compile time option to suppress the "Using fallback.." message
if no busybox.conf file is existant.
Diffstat (limited to 'applets')
-rw-r--r--applets/applets.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/applets/applets.c b/applets/applets.c
index 1a2741940..a6e6598cc 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