From: Lennart Poettering Date: Thu, 3 Jun 2010 01:37:12 +0000 (+0200) Subject: execute: fix parsing of StandardError= setting X-Git-Tag: v1~228 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=a4ddf82766c41627bd94c609bb55983f4b81814f execute: fix parsing of StandardError= setting --- 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 }, \