chiark / gitweb /
Merge pull request #22 from elogind/dev_v232
[elogind.git] / src / basic / cgroup-util.c
index 2c7ceb71d6893015215760691c76b1af6c0ad4cb..44ab535cca2b488303da05a65c4a895499b19d1b 100644 (file)
@@ -1329,7 +1329,11 @@ int cg_shift_path(const char *cgroup, const char *root, const char **shifted) {
         }
 
         p = path_startswith(cgroup, root);
+#if 0 /// With other controllers, elogind might end up in /elogind, and *p is 0
         if (p && p > cgroup)
+#else
+        if (p && p[0] && (p > cgroup))
+#endif // 0
                 *shifted = p - 1;
         else
                 *shifted = cgroup;