aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-10 23:03:30 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-10 23:03:30 +0000
commitaf0dfd1b9fbb1ba8ccba9f220018e6819180149e (patch)
treed0dd803ca8b6c70521895fd5ec71ef532861b8e4 /shell/hush.c
parentca47f469046173726e352cef459929bd27d132bd (diff)
downloadbusybox-w32-af0dfd1b9fbb1ba8ccba9f220018e6819180149e.tar.gz
busybox-w32-af0dfd1b9fbb1ba8ccba9f220018e6819180149e.tar.bz2
busybox-w32-af0dfd1b9fbb1ba8ccba9f220018e6819180149e.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 git-svn-id: svn://busybox.net/trunk/busybox@18394 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 666604dd9..f6c69a221 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -1112,7 +1112,7 @@ static void pseudo_exec(struct child_prog *child)
1112 * really dislike relying on /proc for things. We could exec ourself 1112 * really dislike relying on /proc for things. We could exec ourself
1113 * from global_argv[0], but if we are in a chroot, we may not be able 1113 * from global_argv[0], but if we are in a chroot, we may not be able
1114 * to find ourself... */ 1114 * to find ourself... */
1115#if ENABLE_FEATURE_SH_STANDALONE_SHELL 1115#if ENABLE_FEATURE_SH_STANDALONE
1116 { 1116 {
1117 int argc_l; 1117 int argc_l;
1118 char** argv_l = child->argv; 1118 char** argv_l = child->argv;