diff options
author | Ronny Chevalier <chevalier.ronny@gmail.com> | 2016-06-23 13:11:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-23 13:11:58 +0100 |
commit | 48a97bb4dc82e8994b8416c6b9f95fb59c495015 (patch) | |
tree | 0ae3dd7c6b0197b960a3b2e5ff93db59d6643ab0 /src/core/unit.c | |
parent | 2bb6c19f5246df3b89ced17217458140921510ed (diff) | |
parent | f4170c671b863a211056972a469abd416086f22c (diff) |
Merge pull request #3583 from poettering/restrict-realtime
add new RestrictRealtime= option to services (and other fixes)
Diffstat (limited to 'src/core/unit.c')
-rw-r--r-- | src/core/unit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/unit.c b/src/core/unit.c index 581962eba6..0a1a5321df 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -3364,6 +3364,7 @@ int unit_write_drop_in(Unit *u, UnitSetPropertiesMode mode, const char *name, co /* When this is a transient unit file in creation, then let's not create a new drop-in but instead * write to the transient unit file. */ fputs(data, u->transient_file); + fputc('\n', u->transient_file); return 0; } |