summaryrefslogtreecommitdiff
path: root/src/dbus-path.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-path.c
parent34df5a34e1d0ac4bba453fb5f52f18a2f5f260f9 (diff)
dbus: properly generate UnknownInterface, UnknownProperty and PropertyReadOnly errors
Diffstat (limited to 'src/dbus-path.c')
-rw-r--r--src/dbus-path.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dbus-path.c b/src/dbus-path.c
index 6155792d0d..cb1d4f09cb 100644
--- a/src/dbus-path.c
+++ b/src/dbus-path.c
@@ -41,6 +41,10 @@
BUS_INTROSPECTABLE_INTERFACE \
"</node>\n"
+#define INTERFACES_LIST \
+ BUS_UNIT_INTERFACES_LIST \
+ "org.freedesktop.systemd1.Path\0"
+
const char bus_path_interface[] _introspect_("Path") = BUS_PATH_INTERFACE;
static int bus_path_append_paths(Manager *m, DBusMessageIter *i, const char *property, void *data) {
@@ -94,5 +98,5 @@ DBusHandlerResult bus_path_message_handler(Unit *u, DBusConnection *c, DBusMessa
{ 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);
}