From: Tero Roponen Date: Tue, 17 Aug 2010 17:46:18 +0000 (+0300) Subject: main: restore an accidentally removed 'else' X-Git-Tag: v8~46 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9c501a5902a64d4ec21cf0e87d16ec8c0c1e169;p=systemd main: restore an accidentally removed 'else' I just noticed this when reading the latest commits. --- diff --git a/src/main.c b/src/main.c index 2c91fe45..35ee1c73 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 {