From: Tero Roponen Date: Thu, 15 Mar 2012 06:26:55 +0000 (+0200) Subject: journalctl: add a missing 'break' X-Git-Tag: v44~10 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=490e567dbb12928528d395d2c759b80960312e8f 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. --- diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index 38c9d73b4..089086eb9 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;