udev: add missing short option name

Follow-up for 4fcc033b54.

Fixes CID#1442307.
This commit is contained in:
Yu Watanabe 2021-01-14 00:10:23 +09:00 committed by Lennart Poettering
parent ce0079d75e
commit 983cbd91a8

View file

@ -239,7 +239,7 @@ static int builtin_blkid(sd_device *dev, int argc, char *argv[], bool test) {
static const struct option options[] = {
{ "offset", required_argument, NULL, 'o' },
{ "hint", required_argument, NULL, 'H' },
{ "noraid", no_argument, NULL, 'R' },
{ "noraid", no_argument, NULL, 'R' },
{}
};
@ -251,7 +251,7 @@ static int builtin_blkid(sd_device *dev, int argc, char *argv[], bool test) {
for (;;) {
int option;
option = getopt_long(argc, argv, "o:R", options, NULL);
option = getopt_long(argc, argv, "o:H:R", options, NULL);
if (option == -1)
break;