From 10f00ff17b9c9b55dc77c99797d27cb819fa5fdf Mon Sep 17 00:00:00 2001 From: Iago López Galeiras Date: Tue, 30 Jun 2015 15:08:49 +0200 Subject: core: handle --log-target=null when calling systemd-shutdown When shutting down, if systemd was started with --log-target=null, systemd-shutdown was being called with --log-target=console. --- src/core/main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/core/main.c b/src/core/main.c index 332453a0ea..523f0ce020 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1995,6 +1995,10 @@ finish: command_line[pos++] = "kmsg"; break; + case LOG_TARGET_NULL: + command_line[pos++] = "null"; + break; + case LOG_TARGET_CONSOLE: default: command_line[pos++] = "console"; -- cgit v1.2.3-54-g00ecf