aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-10 00:24:50 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-10 00:24:50 +0000
commit62a6983a818ce701b924f84bf23716c4fbff170a (patch)
treed32b42bd0212bcdd1feba0e1b896932142766931 /shell
parent886bb0df664205fc1098f34092fb5f716c225d06 (diff)
downloadbusybox-62a6983a818ce701b924f84bf23716c4fbff170a.tar.gz
execute "safe applets" exev if not standalone shell
(patch by "Eric Spakman" <E.Spakman@inter.nl.net>)
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 6d96bce5a..10217fe2f 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -3717,7 +3717,7 @@ shellexec(char **argv, const char *path, int idx)
clearredir(1);
envp = environment();
- if (strchr(argv[0], '/')
+ if (strchr(argv[0], '/') || is_safe_applet(argv[0])
#ifdef CONFIG_FEATURE_SH_STANDALONE_SHELL
|| find_applet_by_name(argv[0])
#endif