diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-05-29 18:42:40 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-05-29 18:42:40 +0200 |
commit | 8d76eea87b29369c2ca70a95f0dc5c63b879a44f (patch) | |
tree | 5b92cd549f865e884918ef977506047aa4ff7085 /src/core/dbus-scope.c | |
parent | 8c35b2ca15a9194412c95ba594712b0d5fe25a64 (diff) | |
parent | 49174f75514bf1033dd6916176a551a923b77dc5 (diff) |
Merge pull request #3378 from keszybz/unit-write-drop-in-newline-removal
Remove newlines from drop in format strings + some formatting fixes
Diffstat (limited to 'src/core/dbus-scope.c')
-rw-r--r-- | src/core/dbus-scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus-scope.c b/src/core/dbus-scope.c index 34ee9a8fa9..f557eedfc3 100644 --- a/src/core/dbus-scope.c +++ b/src/core/dbus-scope.c @@ -147,7 +147,7 @@ static int bus_scope_set_transient_property( if (r < 0) return r; - unit_write_drop_in_format(UNIT(s), mode, name, "[Scope]\nTimeoutStopSec="USEC_FMT"us\n", s->timeout_stop_usec); + unit_write_drop_in_private_format(UNIT(s), mode, name, "TimeoutStopSec="USEC_FMT"us", s->timeout_stop_usec); } else { r = sd_bus_message_skip(message, "t"); if (r < 0) |