aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 8b21e655c..af96c4d1d 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -6470,10 +6470,8 @@ tryexec(char *cmd, char **argv, char **envp)
6470 6470
6471 a = find_applet_by_name(cmd); 6471 a = find_applet_by_name(cmd);
6472 if (a) { 6472 if (a) {
6473 if (a->noexec) { 6473 if (a->noexec)
6474 current_applet = a; 6474 run_appletstruct_and_exit(a, argv);
6475 run_current_applet_and_exit(argv);
6476 }
6477 /* re-exec ourselves with the new arguments */ 6475 /* re-exec ourselves with the new arguments */
6478 execve(bb_busybox_exec_path, argv, envp); 6476 execve(bb_busybox_exec_path, argv, envp);
6479 /* If they called chroot or otherwise made the binary no longer 6477 /* If they called chroot or otherwise made the binary no longer