aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-03-21 05:07:43 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-03-21 05:07:43 +0100
commit32176ccec4eb1a3bc26b0217fa8d23f6ff44fab8 (patch)
tree135fb88a7c6c2fe024c7c8d03f6878be8fb84263 /init
parente2e55b0eb5e3518702f31b122acd9894630b0368 (diff)
downloadbusybox-32176ccec4eb1a3bc26b0217fa8d23f6ff44fab8.tar.gz
init: fix a case where execv's 1st arg was wrong
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'init')
-rw-r--r--init/init.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/init/init.c b/init/init.c
index 586e34a18..ff9dc06a4 100644
--- a/init/init.c
+++ b/init/init.c
@@ -414,6 +414,7 @@ static void init_exec(const char *command)
char *word, *next;
int i = 0;
next = strcpy(buf, command - dash); /* command including "-" */
+ command = next + dash;
while ((word = strsep(&next, " \t")) != NULL) {
if (*word != '\0') { /* not two spaces/tabs together? */
cmd[i] = word;