diff options
author | Daniel Mack <zonque@gmail.com> | 2013-12-18 00:20:55 +0100 |
---|---|---|
committer | Daniel Mack <zonque@gmail.com> | 2013-12-18 00:20:55 +0100 |
commit | ceceaf09f9e4a53f86c623d70931676255aef334 (patch) | |
tree | 9305d511948eac200fbd5fc9c1b366528677ad28 /src/libsystemd-bus/bus-control.c | |
parent | d638dee035bea5ce1082cce6448ad4d8f8cedf55 (diff) |
bus: sync with kdbus
Two new things here:
a) struct kdbus_notify_name_change now carries two struct
kdbus_notify_id_change
b) a new KDBUS_CMD_BYEBYE ioctl that has no user yet in systemd
Diffstat (limited to 'src/libsystemd-bus/bus-control.c')
-rw-r--r-- | src/libsystemd-bus/bus-control.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsystemd-bus/bus-control.c b/src/libsystemd-bus/bus-control.c index 0072c37a8c..9866681387 100644 --- a/src/libsystemd-bus/bus-control.c +++ b/src/libsystemd-bus/bus-control.c @@ -787,8 +787,8 @@ static int add_name_change_match(sd_bus *bus, offsetof(struct kdbus_notify_name_change, name) + l+1; - item->name_change.old_id = old_owner_id; - item->name_change.new_id = new_owner_id; + item->name_change.old.id = old_owner_id; + item->name_change.new.id = new_owner_id; if (name) strcpy(item->name_change.name, name); |