diff options
author | Hristo Venev <mustrumr97@gmail.com> | 2014-06-23 18:53:04 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-23 18:53:56 +0200 |
commit | cdd7b7dfd44649b204c43e907f03d4294de4f28a (patch) | |
tree | 38dff307a5fb7a539fa3af21ea72a07a9ab7281c /src/core | |
parent | ff452e76e2c0f89a32542b7179bb2fd538335933 (diff) |
core: make sure Environment fields passed in for transient units are properly written to unit files
https://bugs.freedesktop.org/show_bug.cgi?id=76744
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/dbus-execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus-execute.c b/src/core/dbus-execute.c index cb9a077d0e..ecbadd765b 100644 --- a/src/core/dbus-execute.c +++ b/src/core/dbus-execute.c @@ -848,7 +848,7 @@ int bus_exec_context_set_transient_property( strv_free(c->environment); c->environment = e; - joined = strv_join(c->environment, " "); + joined = strv_join_quoted(c->environment); if (!joined) return -ENOMEM; |