diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-06 01:20:12 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-06 01:20:12 +0000 |
commit | e84333341b74188d901c2784f00b4c970b419be0 (patch) | |
tree | f3e2e2185d092f87843fe4bbc9d1098185a5bdbd /util-linux | |
parent | 25a67790a738b7155dc868979c211001148f616f (diff) | |
download | busybox-w32-e84333341b74188d901c2784f00b4c970b419be0.tar.gz busybox-w32-e84333341b74188d901c2784f00b4c970b419be0.tar.bz2 busybox-w32-e84333341b74188d901c2784f00b4c970b419be0.zip |
EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>
git-svn-id: svn://busybox.net/trunk/busybox@17785 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/setarch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/setarch.c b/util-linux/setarch.c index 8f4e308d4..a7a45ec4d 100644 --- a/util-linux/setarch.c +++ b/util-linux/setarch.c | |||
@@ -46,7 +46,7 @@ retry: | |||
46 | if (personality(pers) >= 0) { | 46 | if (personality(pers) >= 0) { |
47 | 47 | ||
48 | /* Try to execute the program */ | 48 | /* Try to execute the program */ |
49 | execvp(argv[0], argv); | 49 | BB_EXECVP(argv[0], argv); |
50 | } | 50 | } |
51 | 51 | ||
52 | bb_perror_msg_and_die("%s", argv[0]); | 52 | bb_perror_msg_and_die("%s", argv[0]); |