diff options
author | Jan Synacek <jsynacek@redhat.com> | 2014-12-15 10:39:00 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-12-16 00:30:34 -0500 |
commit | 75836b9d2071aab978ee78d7d797126a18a32052 (patch) | |
tree | 0cf2244d78d49f9de1e24bd48620eec7043d813b /src/systemctl | |
parent | df17ddee0853482bfaefc36b9bd3424a64621915 (diff) |
systemctl: fix argument handling when invoked as "shutdown"
Diffstat (limited to 'src/systemctl')
-rw-r--r-- | src/systemctl/systemctl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 649fb5cde5..4c4648f4c4 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -6926,7 +6926,7 @@ static int shutdown_parse_argv(int argc, char *argv[]) { assert(argc >= 0); assert(argv); - while ((c = getopt_long(argc, argv, "HPrhkt:afFc", options, NULL)) >= 0) + while ((c = getopt_long(argc, argv, "HPrhkKt:afFc", options, NULL)) >= 0) switch (c) { case ARG_HELP: @@ -6967,6 +6967,8 @@ static int shutdown_parse_argv(int argc, char *argv[]) { case 't': case 'a': + case 'f': + case 'F': /* Compatibility nops */ break; |