From bd253d1b910a003c1d87f1f58a6afabd4f946ce5 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 26 May 2011 02:16:49 +0200 Subject: dbus: add api for append gid/uid properties --- src/dbus-common.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/dbus-common.c') diff --git a/src/dbus-common.c b/src/dbus-common.c index c2650fdf33..cb43bbdd4c 100644 --- a/src/dbus-common.c +++ b/src/dbus-common.c @@ -503,7 +503,7 @@ int bus_property_append_uint64(DBusMessageIter *i, const char *property, void *d assert(property); assert(data); - /* Let's ensure that pid_t is actually 64bit, and hence this + /* Let's ensure that usec_t is actually 64bit, and hence this * function can be used for usec_t */ assert_cc(sizeof(uint64_t) == sizeof(usec_t)); @@ -518,11 +518,14 @@ int bus_property_append_uint32(DBusMessageIter *i, const char *property, void *d assert(property); assert(data); - /* Let's ensure that pid_t and mode_t is actually 32bit, and - * hence this function can be used for pid_t/mode_t */ + /* Let's ensure that pid_t, mode_t, uid_t, gid_t are actually + * 32bit, and hence this function can be used for + * pid_t/mode_t/uid_t/gid_t */ assert_cc(sizeof(uint32_t) == sizeof(pid_t)); assert_cc(sizeof(uint32_t) == sizeof(mode_t)); assert_cc(sizeof(uint32_t) == sizeof(unsigned)); + assert_cc(sizeof(uint32_t) == sizeof(uid_t)); + assert_cc(sizeof(uint32_t) == sizeof(gid_t)); if (!dbus_message_iter_append_basic(i, DBUS_TYPE_UINT32, data)) return -ENOMEM; -- cgit v1.2.3-54-g00ecf