Added a compile time option to suppress the "Using fallback.." message

if no busybox.conf file is existant.
This commit is contained in:
Robert Griebl 2002-07-18 23:59:17 +00:00
parent 2c0d0f0051
commit 88947dd05e
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -20,6 +20,9 @@ bool 'Support for SUID/SGID handling' CONFIG_FEATURE_SUID
if [ "$CONFIG_FEATURE_SUID" = "y" ]; then
bool ' Runtime configuration via /etc/busybox.conf' CONFIG_FEATURE_SUID_CONFIG
fi
if [ "$CONFIG_FEATURE_SUID_CONFIG" = "y" ]; then
bool ' Suppress message if config file is not readable' CONFIG_FEATURE_SUID_CONFIG_QUIET
fi
endmenu
source archival/config.in