1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-27 10:25:06 +03:00

execute: fix parsing of StandardError= setting

This commit is contained in:
Lennart Poettering 2010-06-03 03:37:12 +02:00
parent 35374c804d
commit a4ddf82766

View File

@ -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 }, \