diff options
author | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-08-27 15:08:57 +0000 |
---|---|---|
committer | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-08-27 15:08:57 +0000 |
commit | eaf475916a82367d34ef6209ce00ab0ed86c8ef6 (patch) | |
tree | 1f11104ba8e02002e158733050325b6a371c6687 /applets | |
parent | 5eb3bbba5661c722aab3bf2037ddfe57031aae73 (diff) | |
download | busybox-w32-eaf475916a82367d34ef6209ce00ab0ed86c8ef6.tar.gz busybox-w32-eaf475916a82367d34ef6209ce00ab0ed86c8ef6.tar.bz2 busybox-w32-eaf475916a82367d34ef6209ce00ab0ed86c8ef6.zip |
Fix ash exec (noted by Arne Bernin).
git-svn-id: svn://busybox.net/trunk/busybox@3359 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/applets.c b/applets/applets.c index ca2de87d4..ffa806ebc 100644 --- a/applets/applets.c +++ b/applets/applets.c | |||
@@ -99,7 +99,7 @@ void run_applet_by_name(const char *name, int argc, char **argv) | |||
99 | if (recurse_level == 1) { | 99 | if (recurse_level == 1) { |
100 | run_applet_by_name("busybox", argc, argv); | 100 | run_applet_by_name("busybox", argc, argv); |
101 | } | 101 | } |
102 | recurse_level = 0; | 102 | recurse_level--; |
103 | } | 103 | } |
104 | 104 | ||
105 | 105 | ||