chiark / gitweb /
machined: fix bus path unescaping
authorLennart Poettering <lennart@poettering.net>
Tue, 2 Jul 2013 01:58:28 +0000 (03:58 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 2 Jul 2013 01:58:28 +0000 (03:58 +0200)
TODO
src/machine/machine-dbus.c

diff --git a/TODO b/TODO
index 96ed2c06d82b1bf2d50f64d79a2cb4fb05a4dcee..00f22d592ebf356340c27819d7caa809419864ff 100644 (file)
--- a/TODO
+++ b/TODO
@@ -64,11 +64,6 @@ Features:
 
 * handle jointly mounted controllers correctly
 
-* split out CreateMachine into systemd-machined
-
-* make logind's session and machine
-  registration use Slices to set up cgroups
-
 * journald: make sure ratelimit is actually really per-service with the new cgroup changes
 
 * move systemctl dump to systemd-analyze
index 424f98edd56cd81f6497c065930a78e71c79f3b2..243b8604cd960fc34402b7a63202dd0402aa50c1 100644 (file)
@@ -109,7 +109,7 @@ static int get_machine_for_path(Manager *m, const char *path, Machine **_machine
         if (!startswith(path, "/org/freedesktop/machine1/machine/"))
                 return -EINVAL;
 
-        e = bus_path_unescape(path + 32);
+        e = bus_path_unescape(path + 34);
         if (!e)
                 return -ENOMEM;