|
|
984f77 |
From 2ba82e6b7e9a7b138c985561dd7d26b9e4111fbe Mon Sep 17 00:00:00 2001
|
|
|
984f77 |
From: Lennart Poettering <lennart@poettering.net>
|
|
|
984f77 |
Date: Mon, 26 Nov 2018 21:06:19 +0100
|
|
|
984f77 |
Subject: [PATCH] dbus-execute: fix indentation
|
|
|
984f77 |
|
|
|
984f77 |
(cherry picked from commit dbe6c4b657aa5c58bfc049d869b94f00b41b7d95)
|
|
|
984f77 |
|
|
|
984f77 |
Related: #2093479
|
|
|
984f77 |
---
|
|
|
984f77 |
src/core/dbus-execute.c | 6 +++---
|
|
|
984f77 |
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
984f77 |
|
|
|
984f77 |
diff --git a/src/core/dbus-execute.c b/src/core/dbus-execute.c
|
|
|
984f77 |
index 05134851c5..fc433cc96f 100644
|
|
|
984f77 |
--- a/src/core/dbus-execute.c
|
|
|
984f77 |
+++ b/src/core/dbus-execute.c
|
|
|
984f77 |
@@ -1858,9 +1858,9 @@ int bus_exec_context_set_transient_property(
|
|
|
984f77 |
c->std_error = EXEC_OUTPUT_FILE;
|
|
|
984f77 |
unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardOutput=file:%s", s);
|
|
|
984f77 |
} else {
|
|
|
984f77 |
- assert(streq(name, "StandardErrorFileToAppend"));
|
|
|
984f77 |
- c->std_error = EXEC_OUTPUT_FILE_APPEND;
|
|
|
984f77 |
- unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardOutput=append:%s", s);
|
|
|
984f77 |
+ assert(streq(name, "StandardErrorFileToAppend"));
|
|
|
984f77 |
+ c->std_error = EXEC_OUTPUT_FILE_APPEND;
|
|
|
984f77 |
+ unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardOutput=append:%s", s);
|
|
|
984f77 |
}
|
|
|
984f77 |
}
|
|
|
984f77 |
}
|