diff options
author | Matt Kraai <kraai@debian.org> | 2001-08-27 15:08:57 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-08-27 15:08:57 +0000 |
commit | 861e624e15a0f587d9507d7387541e6cdbad565c (patch) | |
tree | 1f11104ba8e02002e158733050325b6a371c6687 /applets | |
parent | 449377aa6a8cb6b75d3b6aff6af7aade3174b2f3 (diff) | |
download | busybox-w32-861e624e15a0f587d9507d7387541e6cdbad565c.tar.gz busybox-w32-861e624e15a0f587d9507d7387541e6cdbad565c.tar.bz2 busybox-w32-861e624e15a0f587d9507d7387541e6cdbad565c.zip |
Fix ash exec (noted by Arne Bernin).
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 | ||