From 490e567dbb12928528d395d2c759b80960312e8f Mon Sep 17 00:00:00 2001 From: Tero Roponen Date: Thu, 15 Mar 2012 08:26:55 +0200 Subject: journalctl: add a missing 'break' There is a 'break' missing in the -q handling so, for example, 'systemd-journalctl --new-id128 -q' does nothing. This patch fixes the problem. --- src/journal/journalctl.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/journal') diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index 38c9d73b44..089086eb98 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -148,6 +148,7 @@ static int parse_argv(int argc, char *argv[]) { case 'q': arg_quiet = true; + break; case '?': return -EINVAL; -- cgit v1.2.3-54-g00ecf