diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-02-21 19:26:53 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-02-21 19:26:53 +0100 |
commit | b284eabdc14683e4587baf43e83cedc6698a42df (patch) | |
tree | c64896df73b73360ef8e188906d30cedeab938ab /src/dbus-path.c | |
parent | 50483512b901aa216bc12bbe12dc99c1963d79fb (diff) |
dbus: don't rely that timer/path units have an initialized unit field
Diffstat (limited to 'src/dbus-path.c')
-rw-r--r-- | src/dbus-path.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/dbus-path.c b/src/dbus-path.c index 9692d6a247..6155792d0d 100644 --- a/src/dbus-path.c +++ b/src/dbus-path.c @@ -72,10 +72,24 @@ static int bus_path_append_paths(Manager *m, DBusMessageIter *i, const char *pro return 0; } +static int bus_path_append_unit(Manager *m, DBusMessageIter *i, const char *property, void *data) { + Unit *u = data; + const char *t; + + assert(m); + assert(i); + assert(property); + assert(u); + + t = u->path.unit ? u->path.unit->meta.id : ""; + + return dbus_message_iter_append_basic(i, DBUS_TYPE_STRING, &t) ? 0 : -ENOMEM; +} + DBusHandlerResult bus_path_message_handler(Unit *u, DBusConnection *c, DBusMessage *message) { const BusProperty properties[] = { BUS_UNIT_PROPERTIES, - { "org.freedesktop.systemd1.Path", "Unit", bus_property_append_string, "s", u->path.unit->meta.id }, + { "org.freedesktop.systemd1.Path", "Unit", bus_path_append_unit, "s", u }, { "org.freedesktop.systemd1.Path", "Paths", bus_path_append_paths, "a(ss)", u }, { NULL, NULL, NULL, NULL, NULL } }; |