From: Thomas Hindoe Paaboel Andersen Date: Thu, 18 Jun 2015 15:21:21 +0000 (+0200) Subject: cgroup-util: actually use the path callback X-Git-Tag: v221~12^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F288%2Fhead;p=thirdparty%2Fsystemd.git 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 --- diff --git a/src/basic/cgroup-util.c b/src/basic/cgroup-util.c index 66857f118f7..439c5516dc2 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;