diff options
author | Tero Roponen <tero.roponen@gmail.com> | 2010-08-17 20:46:18 +0300 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-17 23:45:57 +0200 |
commit | a9c501a5902a64d4ec21cf0e87d16ec8c0c1e169 (patch) | |
tree | 28cfaa8165e603589506176b97bd384e1cf95106 | |
parent | d51d2d3db9c201b248ee08ef3317b5fe05ec816b (diff) |
main: restore an accidentally removed 'else'
I just noticed this when reading the latest commits.
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 2c91fe4578..35ee1c73e1 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 { |