summaryrefslogtreecommitdiff
path: root/src/core/execute.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-12-10 22:06:44 +0100
committerLennart Poettering <lennart@poettering.net>2014-12-10 22:06:44 +0100
commit7b3fd6313c4b07b6f822a9f979d0c22350a401d9 (patch)
tree936f7fa948b9d5eb2e417204108353c13e6485a9 /src/core/execute.c
parent0cd385d31814c8c1bc0c81d11ef321036b8b0921 (diff)
scope: make attachment of initial PIDs a bit more robust
Diffstat (limited to 'src/core/execute.c')
-rw-r--r--src/core/execute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/execute.c b/src/core/execute.c
index 955090c44..5e4135e03 100644
--- a/src/core/execute.c
+++ b/src/core/execute.c
@@ -1351,7 +1351,7 @@ static int exec_child(ExecCommand *command,
}
if (params->cgroup_path) {
- err = cg_attach_everywhere(params->cgroup_supported, params->cgroup_path, 0);
+ err = cg_attach_everywhere(params->cgroup_supported, params->cgroup_path, 0, NULL, NULL);
if (err < 0) {
*error = EXIT_CGROUP;
return err;