Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 21:03:19 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 21:03:19 +0400
commite4f2d064b0fcffc8897089e1c80e6e2d61b6805d (patch)
treefe03aa276fa5396402dc2bc88fccb7559626b976 /shell/lash.c
parent12c96a64a4b7ab75cb0e4a7dfde8960c4391b2a8 (diff)
rename: run_applet_by_name -> run_applet_and_exit
Diffstat (limited to 'shell/lash.c')
-rw-r--r--shell/lash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/lash.c b/shell/lash.c
index 99e2b1f06..f91bec254 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -1170,7 +1170,7 @@ static int pseudo_exec(struct child_prog *child)
for (argc_l = 0; *argv_l; argv_l++, argc_l++);
optind = 1;
- run_applet_by_name(child->argv[0], argc_l, child->argv);
+ run_applet_and_exit(child->argv[0], argc_l, child->argv);
}
execvp(child->argv[0], child->argv);