aboutsummaryrefslogtreecommitdiff
path: root/util-linux/switch_root.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-02-14 07:33:45 +0000
committerRob Landley <rob@landley.net>2006-02-14 07:33:45 +0000
commitd05981eaf18655f30a1b8cc1cd2c3984436ac227 (patch)
tree2ac05967222ad281e0a643bf98933db958d3a727 /util-linux/switch_root.c
parentb2804551a0fafa83d0c5d602761e787f40821519 (diff)
downloadbusybox-d05981eaf18655f30a1b8cc1cd2c3984436ac227.tar.gz
Fix off by one error. (I know I had a reason for doing that, but I have _no_
idea what it was...)
Diffstat (limited to 'util-linux/switch_root.c')
-rw-r--r--util-linux/switch_root.c2
1 files changed, 1 insertions, 1 deletions
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]);
}