summaryrefslogtreecommitdiff
path: root/src/dbus-mount.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-03-09 20:01:53 +0100
committerLennart Poettering <lennart@poettering.net>2011-03-09 20:01:53 +0100
commit05feefe0fb049bb0f7c59584058ee0350462920c (patch)
tree7408358006c490ae4a48ae39c012591495ac99c9 /src/dbus-mount.c
parent34df5a34e1d0ac4bba453fb5f52f18a2f5f260f9 (diff)
dbus: properly generate UnknownInterface, UnknownProperty and PropertyReadOnly errors
Diffstat (limited to 'src/dbus-mount.c')
-rw-r--r--src/dbus-mount.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dbus-mount.c b/src/dbus-mount.c
index e3a793d19..5fb9a3f07 100644
--- a/src/dbus-mount.c
+++ b/src/dbus-mount.c
@@ -50,6 +50,10 @@
BUS_INTROSPECTABLE_INTERFACE \
"</node>\n"
+#define INTERFACES_LIST \
+ BUS_UNIT_INTERFACES_LIST \
+ "org.freedesktop.systemd1.Mount\0"
+
const char bus_mount_interface[] _introspect_("Mount") = BUS_MOUNT_INTERFACE;
const char bus_mount_invalidating_properties[] =
@@ -150,5 +154,5 @@ DBusHandlerResult bus_mount_message_handler(Unit *u, DBusConnection *c, DBusMess
{ NULL, NULL, NULL, NULL, NULL }
};
- return bus_default_message_handler(u->meta.manager, c, message, INTROSPECTION, properties);
+ return bus_default_message_handler(u->meta.manager, c, message, INTROSPECTION, INTERFACES_LIST, properties);
}