From 619d7a039f9f64ffa593634c2715838ffbc17be4 Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Tue, 23 Sep 2014 16:13:54 +0200 Subject: sd-bus: sync kdbus.h (API break) Just a rename of two struct members to make the header file c++ compatible. --- src/libsystemd/sd-bus/kdbus.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libsystemd/sd-bus/kdbus.h') diff --git a/src/libsystemd/sd-bus/kdbus.h b/src/libsystemd/sd-bus/kdbus.h index 0718b8497a..b167c4d00e 100644 --- a/src/libsystemd/sd-bus/kdbus.h +++ b/src/libsystemd/sd-bus/kdbus.h @@ -46,7 +46,7 @@ struct kdbus_notify_id_change { /** * struct kdbus_notify_name_change - name registry change message * @old: ID and flags of former owner of a name - * @new: ID and flags of new owner of a name + * @now: ID and flags of new owner of a name * @name: Well-known name * * Sent from kernel to userspace when the owner or activator of @@ -58,8 +58,8 @@ struct kdbus_notify_id_change { * KDBUS_ITEM_NAME_CHANGE */ struct kdbus_notify_name_change { - struct kdbus_notify_id_change old; - struct kdbus_notify_id_change new; + struct kdbus_notify_id_change old_id; + struct kdbus_notify_id_change new_id; char name[0]; }; -- cgit v1.2.3-54-g00ecf