aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
Diffstat (limited to 'applets')
-rw-r--r--applets/busybox.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/applets/busybox.c b/applets/busybox.c
index 457a85a68..0acb428f4 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -98,7 +98,7 @@ int main(int argc, char **argv)
int busybox_main(int argc, char **argv)
{
- int col = 0, len, i;
+ int col = 0;
#ifdef CONFIG_FEATURE_INSTALLER
/*
@@ -161,18 +161,7 @@ int busybox_main(int argc, char **argv)
/* Flag that we've been here already */
been_there_done_that = 1;
- /* Move the command line down a notch */
- len = argv[argc] + strlen(argv[argc]) - argv[1];
- memmove(argv[0], argv[1], len);
- memset(argv[0] + len, 0, argv[1] - argv[0]);
-
- /* Fix up the argv pointers */
- len = argv[1] - argv[0];
- memmove(argv, argv + 1, sizeof(char *) * (argc + 1));
- for (i = 0; i < argc; i++)
- argv[i] -= len;
-
- return (main(argc, argv));
+ return (main(argc-1, argv+1));
}
/*