diff options
author | Antonio Alvarez Feijoo <antonio.feijoo@suse.com> | 2023-11-06 14:54:42 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2023-11-06 17:36:38 +0100 |
commit | 4697ee9f43b2f4ccd0b5526fea0d1ae20cf61472 (patch) | |
tree | 52cc89723134ef9a39c09c66fc31338f13b12669 /src/boot | |
parent | man/bootctl: fix --dry-run entry (diff) | |
download | systemd-4697ee9f43b2f4ccd0b5526fea0d1ae20cf61472.tar.xz systemd-4697ee9f43b2f4ccd0b5526fea0d1ae20cf61472.zip |
bootctl: fix -q option
Follow up to 14e6e444dd9eaa0db229548c31baecd75de4478e
Diffstat (limited to 'src/boot')
-rw-r--r-- | src/boot/bootctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index 168c843d18..4614ca1780 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -262,7 +262,7 @@ static int parse_argv(int argc, char *argv[]) { assert(argc >= 0); assert(argv); - while ((c = getopt_long(argc, argv, "hpxR", options, NULL)) >= 0) + while ((c = getopt_long(argc, argv, "hpxRq", options, NULL)) >= 0) switch (c) { case 'h': |