From 06ed6137e17186117354c9fc7b871a786c4fb232 Mon Sep 17 00:00:00 2001 From: bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> Date: Fri, 3 Oct 2003 07:51:30 +0000 Subject: argc has already been decremented git-svn-id: svn://busybox.net/trunk/busybox@7594 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- applets/busybox.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/applets/busybox.c b/applets/busybox.c index 0acb428f4..13b9f6fcb 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -160,8 +160,9 @@ int busybox_main(int argc, char **argv) /* Flag that we've been here already */ been_there_done_that = 1; - - return (main(argc-1, argv+1)); + + /* Move the command line down a notch */ + return (main(argc, argv+1)); } /* -- cgit v1.2.3-55-g6feb