X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fbasic%2Fcgroup-util.c;h=65884568e51cdb767c79f85d711cb4cfad4781a4;hb=e234cf302eeeb19e4689639a980895d7257fa77a;hp=e3b67e3d8c05b507fc3b01ecc36618eb30f8efec;hpb=682a7fe521cc3d983dc6c690cbc107a3c8a13344;p=elogind.git diff --git a/src/basic/cgroup-util.c b/src/basic/cgroup-util.c index e3b67e3d8..65884568e 100644 --- a/src/basic/cgroup-util.c +++ b/src/basic/cgroup-util.c @@ -1712,7 +1712,7 @@ int cg_path_get_slice(const char *p, char **slice) { if (!e) { char *s; - s = strdup("-.slice"); + s = strdup(SPECIAL_ROOT_SLICE); if (!s) return -ENOMEM; @@ -1869,7 +1869,7 @@ int cg_slice_to_path(const char *unit, char **ret) { assert(unit); assert(ret); - if (streq(unit, "-.slice")) { + if (streq(unit, SPECIAL_ROOT_SLICE)) { char *x; x = strdup("");