cgfsng: non-functional changes

parent abd51274
......@@ -834,13 +834,11 @@ static bool all_controllers_found(void)
if (!cgroup_use)
return true;
for (p = strtok_r(cgroup_use, ",", &saveptr); p;
p = strtok_r(NULL, ",", &saveptr)) {
for (; (p = strtok_r(cgroup_use, ",", &saveptr)); cgroup_use = NULL)
if (!controller_found(hlist, p)) {
CGFSNG_DEBUG("No %s controller mountpoint found\n", p);
return false;
}
}
return true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment