From 5e8d1c9a9f15b7453474dc4879bdb4021c3f50a1 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 19 Jun 2010 03:04:04 +0200 Subject: dbus: to make sure that systemd stays controllable during early bootup, register our services on our own micro usb server in addition to the bus --- src/dbus-automount.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dbus-automount.c') diff --git a/src/dbus-automount.c b/src/dbus-automount.c index 285f666da9..61732f989f 100644 --- a/src/dbus-automount.c +++ b/src/dbus-automount.c @@ -38,12 +38,12 @@ const char bus_automount_interface[] = BUS_AUTOMOUNT_INTERFACE; -DBusHandlerResult bus_automount_message_handler(Unit *u, DBusMessage *message) { +DBusHandlerResult bus_automount_message_handler(Unit *u, DBusConnection *c, DBusMessage *message) { const BusProperty properties[] = { BUS_UNIT_PROPERTIES, { "org.freedesktop.systemd1.Automount", "Where", bus_property_append_string, "s", u->automount.where }, { 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); } -- cgit v1.2.3-54-g00ecf