From edf5b3b8693a4bbc69d9bfae6a3d4f1b612d3e32 Mon Sep 17 00:00:00 2001 From: Thomas Hindoe Paaboel Andersen Date: Thu, 18 Jun 2015 17:21:21 +0200 Subject: [PATCH] cgroup-util: actually use the path callback We allow to specify a callback but then ignore the result. Looks like a trivial typo. From 7b3fd6313c4b07b6f822a9f979d0c22350a401d9#diff-f010fa21ba7b659b519c122743e55604 --- src/basic/cgroup-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/cgroup-util.c b/src/basic/cgroup-util.c index 66857f118f..439c5516dc 100644 --- a/src/basic/cgroup-util.c +++ b/src/basic/cgroup-util.c @@ -1776,7 +1776,7 @@ int cg_attach_everywhere(CGroupControllerMask supported, const char *path, pid_t if (!p) p = path; - cg_attach_fallback(n, path, pid); + cg_attach_fallback(n, p, pid); } bit <<= 1;