aboutsummaryrefslogtreecommitdiff
path: root/include/busybox.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-10 23:03:30 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-10 23:03:30 +0000
commit80d14beae9ebe64d3be1e6c2771f292977cf6d2c (patch)
treed0dd803ca8b6c70521895fd5ec71ef532861b8e4 /include/busybox.h
parent89054964443b5cb14cba673b86306f534810404a (diff)
downloadbusybox-w32-80d14beae9ebe64d3be1e6c2771f292977cf6d2c.tar.gz
busybox-w32-80d14beae9ebe64d3be1e6c2771f292977cf6d2c.tar.bz2
busybox-w32-80d14beae9ebe64d3be1e6c2771f292977cf6d2c.zip
Rename two config options:
FEATURE_SH_STANDALONE_SHELL => FEATURE_SH_STANDALONE FEATURE_EXEC_PREFER_APPLETS => FEATURE_PREFER_APPLETS Make SH_STANDALONE depend on PREFER_APPLETS. getopt.c: more randomconfig-induced fixes
Diffstat (limited to 'include/busybox.h')
-rw-r--r--include/busybox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/busybox.h b/include/busybox.h
index 380de9ab8..290ad17f2 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -37,7 +37,7 @@ struct bb_applet {
37#if ENABLE_FEATURE_SUID 37#if ENABLE_FEATURE_SUID
38 __extension__ enum bb_suid_t need_suid:8; 38 __extension__ enum bb_suid_t need_suid:8;
39#endif 39#endif
40#if ENABLE_FEATURE_EXEC_PREFER_APPLETS 40#if ENABLE_FEATURE_PREFER_APPLETS
41 /* true if instead if fork(); exec("applet"); waitpid(); 41 /* true if instead if fork(); exec("applet"); waitpid();
42 * one can do fork(); exit(applet_main(argc,argv)); waitpid(); */ 42 * one can do fork(); exit(applet_main(argc,argv)); waitpid(); */
43 unsigned char noexec; 43 unsigned char noexec;