X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fdbus-target.c;h=69e82120764e7f8365ef102934287a3b7667e2bf;hp=45f0d31f05de9efe4a4ec13cb32d35a1b67fb2cc;hb=bb7df0da2d14800d4cb871ab07a9d3595990fbad;hpb=4288f619215e3dda0b75113d78e4fb7ba219ed58 diff --git a/src/dbus-target.c b/src/dbus-target.c index 45f0d31f0..69e821207 100644 --- a/src/dbus-target.c +++ b/src/dbus-target.c @@ -1,4 +1,4 @@ -/*-*- Mode: C; c-basic-offset: 8 -*-*/ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ /*** This file is part of systemd. @@ -19,6 +19,8 @@ along with systemd; If not, see . ***/ +#include + #include "dbus-unit.h" #include "dbus-target.h" @@ -32,16 +34,17 @@ BUS_UNIT_INTERFACE \ BUS_TARGET_INTERFACE \ BUS_PROPERTIES_INTERFACE \ + BUS_PEER_INTERFACE \ BUS_INTROSPECTABLE_INTERFACE \ "\n" const char bus_target_interface[] = BUS_TARGET_INTERFACE; -DBusHandlerResult bus_target_message_handler(Unit *u, DBusMessage *message) { +DBusHandlerResult bus_target_message_handler(Unit *u, DBusConnection *c, DBusMessage *message) { const BusProperty properties[] = { BUS_UNIT_PROPERTIES, { NULL, NULL, NULL, NULL, NULL } }; - return bus_default_message_handler(u->meta.manager, message, INTROSPECTION, properties); + return bus_default_message_handler(u->meta.manager, c, message, INTROSPECTION, properties); }