From a9c501a5902a64d4ec21cf0e87d16ec8c0c1e169 Mon Sep 17 00:00:00 2001 From: Tero Roponen Date: Tue, 17 Aug 2010 20:46:18 +0300 Subject: [PATCH] main: restore an accidentally removed 'else' I just noticed this when reading the latest commits. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 2c91fe457..35ee1c73e 100644 --- a/src/main.c +++ b/src/main.c @@ -333,7 +333,7 @@ static int parse_proc_cmdline_word(const char *word) { "systemd.log_color=0|1 Highlight important log messages\n" "systemd.log_location=0|1 Include code location in log messages\n"); - } if (streq(word, "quiet")) { + } else if (streq(word, "quiet")) { arg_show_status = false; arg_sysv_console = false; } else { -- 2.30.2