From: Antonio Alvarez Feijoo Date: Mon, 6 Oct 2025 10:42:27 +0000 (+0200) Subject: mute-console: remove unimplemented option X-Git-Tag: v259-rc1~373 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13abd21c9fe5a5989e36e78ac2e24ac07c266114;p=thirdparty%2Fsystemd.git mute-console: remove unimplemented option ``` $ build/systemd-mute-console -q Code should not be reached at src/mute-console/mute-console.c:103, function parse_argv(). Aborting. 💥 Aborted (core dumped) ``` --- diff --git a/src/mute-console/mute-console.c b/src/mute-console/mute-console.c index 7f0b211d3f5..4a444987772 100644 --- a/src/mute-console/mute-console.c +++ b/src/mute-console/mute-console.c @@ -72,7 +72,7 @@ static int parse_argv(int argc, char *argv[]) { assert(argc >= 0); assert(argv); - while ((c = getopt_long(argc, argv, "hq", options, NULL)) >= 0) { + while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) { switch (c) {