From a4ddf82766c41627bd94c609bb55983f4b81814f Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 3 Jun 2010 03:37:12 +0200 Subject: [PATCH] execute: fix parsing of StandardError= setting --- src/load-fragment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/load-fragment.c b/src/load-fragment.c index a706880b9..5f5e37397 100644 --- a/src/load-fragment.c +++ b/src/load-fragment.c @@ -1366,7 +1366,7 @@ static int load_from_path(Unit *u, const char *path) { { "Environment", config_parse_strv, &(context).environment, section }, \ { "StandardInput", config_parse_input, &(context).std_input, section }, \ { "StandardOutput", config_parse_output, &(context).std_output, section }, \ - { "StandardError", config_parse_output, &(context).std_output, section }, \ + { "StandardError", config_parse_output, &(context).std_error, section }, \ { "TTYPath", config_parse_path, &(context).tty_path, section }, \ { "SyslogIdentifier", config_parse_string, &(context).syslog_identifier, section }, \ { "SyslogFacility", config_parse_facility, &(context).syslog_priority, section }, \ -- 2.30.2