aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorsandman <sandman@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-07-18 23:59:17 +0000
committersandman <sandman@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-07-18 23:59:17 +0000
commitd4dbffaf02bf1c39047688988c44c8d60277a76a (patch)
tree02c3da3a9f7dcc562517bae2bc7cfca107d5cbd5 /applets
parent45630664f85f2ffaa6750c9922b82ad979e66c8e (diff)
downloadbusybox-w32-d4dbffaf02bf1c39047688988c44c8d60277a76a.tar.gz
busybox-w32-d4dbffaf02bf1c39047688988c44c8d60277a76a.tar.bz2
busybox-w32-d4dbffaf02bf1c39047688988c44c8d60277a76a.zip
Added a compile time option to suppress the "Using fallback.." message
if no busybox.conf file is existant. git-svn-id: svn://busybox.net/trunk/busybox@5065 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 )
223 return; 223 return;
224 } 224 }
225 else { 225 else {
226#ifndef CONFIG_FEATURE_SUID_CONFIG_QUIET
226 static int onetime = 0; 227 static int onetime = 0;
227 228
228 if ( !onetime ) { 229 if ( !onetime ) {
229 onetime = 1; 230 onetime = 1;
230 fprintf ( stderr, "Using fallback suid method\n" ); 231 fprintf ( stderr, "Using fallback suid method\n" );
231 } 232 }
233#endif
232 } 234 }
233#endif 235#endif
234 236