From 6b43d60850fd9aa16acf67cf004a8aefabdc4fe3 Mon Sep 17 00:00:00 2001 From: landley Date: Tue, 14 Feb 2006 07:33:45 +0000 Subject: Fix off by one error. (I know I had a reason for doing that, but I have _no_ idea what it was...) git-svn-id: svn://busybox.net/trunk/busybox@14007 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- util-linux/switch_root.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util-linux/switch_root.c b/util-linux/switch_root.c index bcc4443ab..1ba374076 100644 --- a/util-linux/switch_root.c +++ b/util-linux/switch_root.c @@ -118,6 +118,6 @@ int switch_root_main(int argc, char *argv[]) } // Exec real init. (This is why we must be pid 1.) - execv(argv[optind],argv+optind+1); + execv(argv[optind],argv+optind); bb_error_msg_and_die("Bad init '%s'",argv[optind]); } -- cgit v1.2.3-55-g6feb