diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-22 01:14:57 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-22 01:42:15 +0100 |
commit | f00c31213a2e521680c2381ef231f05e30c874a7 (patch) | |
tree | a0eb712c597e646c5149441bc301942f9d5fd386 /src/machine/machine-dbus.c | |
parent | 969987ea93a7fdcd2c87b551eb0adf0bd9338b32 (diff) |
bus: also add error parameter to object find and enumerator callbacks
Just in order to bring things inline with the method and property
callbacks.
Diffstat (limited to 'src/machine/machine-dbus.c')
-rw-r--r-- | src/machine/machine-dbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/machine/machine-dbus.c b/src/machine/machine-dbus.c index 2c7f3a798e..c6a794b5e8 100644 --- a/src/machine/machine-dbus.c +++ b/src/machine/machine-dbus.c @@ -142,7 +142,7 @@ const sd_bus_vtable machine_vtable[] = { SD_BUS_VTABLE_END }; -int machine_object_find(sd_bus *bus, const char *path, const char *interface, void **found, void *userdata) { +int machine_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error) { Manager *m = userdata; Machine *machine; int r; @@ -201,7 +201,7 @@ char *machine_bus_path(Machine *m) { return strappend("/org/freedesktop/machine1/machine/", e); } -int machine_node_enumerator(sd_bus *bus, const char *path, char ***nodes, void *userdata) { +int machine_node_enumerator(sd_bus *bus, const char *path, void *userdata, char ***nodes, sd_bus_error *error) { _cleanup_strv_free_ char **l = NULL; Machine *machine = NULL; Manager *m = userdata; |