diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-06-22 01:35:52 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-06-22 01:35:52 +0200 |
commit | c66e7bc7a19c068ca1c414f2f8bd5dc13c20907f (patch) | |
tree | 7acc7a230af7f42370872cb4b269c4ca2d40d7db /src/journal/journald.c | |
parent | 8b38f3cc3eb73adf9536cb73d0f319e60d42ea0c (diff) |
man: document all kernel command line options we understand
Diffstat (limited to 'src/journal/journald.c')
-rw-r--r-- | src/journal/journald.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/journal/journald.c b/src/journal/journald.c index 5c6c4cae9e..98a155bdef 100644 --- a/src/journal/journald.c +++ b/src/journal/journald.c @@ -2630,19 +2630,19 @@ static int server_parse_proc_cmdline(Server *s) { goto finish; } - if (startswith(word, "systemd_journald.forward_to_syslog=")) { + if (startswith(word, "systemd.journald.forward_to_syslog=")) { r = parse_boolean(word + 35); if (r < 0) log_warning("Failed to parse forward to syslog switch %s. Ignoring.", word + 35); else s->forward_to_syslog = r; - } else if (startswith(word, "systemd_journald.forward_to_kmsg=")) { + } else if (startswith(word, "systemd.journald.forward_to_kmsg=")) { r = parse_boolean(word + 33); if (r < 0) log_warning("Failed to parse forward to kmsg switch %s. Ignoring.", word + 33); else s->forward_to_kmsg = r; - } else if (startswith(word, "systemd_journald.forward_to_console=")) { + } else if (startswith(word, "systemd.journald.forward_to_console=")) { r = parse_boolean(word + 36); if (r < 0) log_warning("Failed to parse forward to console switch %s. Ignoring.", word + 36); |