X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fdbus-automount.c;h=ada2d22ca3c3c700218ad25356aa976cd45f31dc;hp=285f666da91b2cda1113a07f42278d9ebd6e4216;hb=9c2d9caab23286f3d8dceaaa43ab46e29e3579fb;hpb=4288f619215e3dda0b75113d78e4fb7ba219ed58 diff --git a/src/dbus-automount.c b/src/dbus-automount.c index 285f666da..ada2d22ca 100644 --- a/src/dbus-automount.c +++ b/src/dbus-automount.c @@ -25,6 +25,7 @@ #define BUS_AUTOMOUNT_INTERFACE \ " \n" \ " \n" \ + " \n" \ " \n" #define INTROSPECTION \ @@ -38,12 +39,13 @@ 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 }, + { "org.freedesktop.systemd1.Automount", "Where", bus_property_append_string, "s", u->automount.where }, + { "org.freedesktop.systemd1.Automount", "DirectoryMode", bus_property_append_mode, "u", &u->automount.directory_mode }, { 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); }