switch_root: stop at first non-option. Closes bug 1425.

This commit is contained in:
Denis Vlasenko 2008-02-13 17:25:31 +00:00
parent 87cf2ee8ab
commit 6dd03f04ea

View File

@ -73,8 +73,8 @@ int switch_root_main(int argc, char **argv)
// Parse args (-c console)
opt_complementary = "-2";
getopt32(argv, "c:", &console);
opt_complementary = "-2"; // minimum 2 params
getopt32(argv, "+c:", &console); // '+': stop parsing at first non-option
argv += optind;
// Change to new root directory and verify it's a different fs.