*: remove superfluous "?" in option parsing

This commit is contained in:
Denis Vlasenko
2007-11-10 01:32:18 +00:00
parent b4f608d8e0
commit e7fca5125a
2 changed files with 2 additions and 2 deletions

View File

@ -865,7 +865,7 @@ int modprobe_main(int argc, char **argv)
int rc = EXIT_SUCCESS;
char *unused;
opt_complementary = "?V-:q-v:v-q";
opt_complementary = "q-v:v-q";
getopt32(argv, MAIN_OPT_STR, &unused, &unused);
if (option_mask32 & (DUMP_CONF_EXIT | LIST_ALL))