shutdown: fix /proc/cmdline reading of 'quiet'

This commit is contained in:
Kay Sievers 2013-07-11 00:13:46 +02:00
parent 66713f77e8
commit 8577e67245
1 changed files with 9 additions and 2 deletions

View File

@ -144,11 +144,18 @@ int main(int argc, char *argv[]) {
char *w, *state;
size_t l;
FOREACH_WORD_QUOTED(w, l, line, state)
if (streq(w, "quiet")) {
FOREACH_WORD_QUOTED(w, l, line, state) {
_cleanup_free_ char *word;
word = strndup(w, l);
if (!word)
break;
if (streq(word, "quiet")) {
log_set_max_level(LOG_WARNING);
break;
}
}
}
log_parse_environment();