From eb9da376d76b48585b3b63b4f91903b54f7abd36 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 6 Nov 2013 18:28:39 +0100 Subject: clients: unify how we invoke getopt_long() Among other things this makes sure we always expose a --version command and show it in the help texts. --- src/libsystemd-bus/busctl.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/libsystemd-bus/busctl.c') diff --git a/src/libsystemd-bus/busctl.c b/src/libsystemd-bus/busctl.c index 92072b247b..717b91120e 100644 --- a/src/libsystemd-bus/busctl.c +++ b/src/libsystemd-bus/busctl.c @@ -220,7 +220,7 @@ static int parse_argv(int argc, char *argv[]) { { "address", required_argument, NULL, ARG_ADDRESS }, { "no-unique", no_argument, NULL, ARG_NO_UNIQUE }, { "match", required_argument, NULL, ARG_MATCH }, - { NULL, 0, NULL, 0 }, + {}, }; int c; @@ -279,8 +279,7 @@ static int parse_argv(int argc, char *argv[]) { return -EINVAL; default: - log_error("Unknown option code %c", c); - return -EINVAL; + assert_not_reached("Unhandled option"); } } -- cgit v1.2.3-54-g00ecf