Make (no)ro an alias for (no)readonly
This commit is contained in:
parent
1309bed839
commit
96a3750174
@ -193,6 +193,10 @@ main(int argc, char **argv)
|
||||
mdio.md_options |= MD_READONLY;
|
||||
else if (!strcmp(optarg, "noreadonly"))
|
||||
mdio.md_options &= ~MD_READONLY;
|
||||
else if (!strcmp(optarg, "ro"))
|
||||
mdio.md_options |= MD_READONLY;
|
||||
else if (!strcmp(optarg, "noro"))
|
||||
mdio.md_options &= ~MD_READONLY;
|
||||
else if (!strcmp(optarg, "reserve"))
|
||||
mdio.md_options |= MD_RESERVE;
|
||||
else if (!strcmp(optarg, "noreserve"))
|
||||
|
Loading…
Reference in New Issue
Block a user