From: Thomas Hindoe Paaboel Andersen Date: Sat, 9 Nov 2013 13:11:56 +0000 (+0100) Subject: bootctl: remove unused options from getopt_long X-Git-Tag: v209~1496 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=b226deba789ba1a0d2cbc742ddc8160b7feb09c4 bootctl: remove unused options from getopt_long --- diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index 9387e05d0..359e273fd 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -61,7 +61,7 @@ static int parse_argv(int argc, char *argv[]) { assert(argc >= 0); assert(argv); - while ((c = getopt_long(argc, argv, "+hH:P", options, NULL)) >= 0) { + while ((c = getopt_long(argc, argv, "+h", options, NULL)) >= 0) { switch (c) {