+2004-06-09 Olivier Andrieu <oliv__a@users.sourceforge.net>
+
+ * bus/driver.c, dbus/dbus-bus.c: use BOOLEAN instead of UINT32 for
+ the reply value of the ServiceExists message.
+
2004-06-07 John (J5) Palmieri <johnp@redhat.com>
* python/dbus_bindings.pyx.in: No longer need to parse path
}
if (!dbus_message_append_args (reply,
- DBUS_TYPE_UINT32, service != NULL,
+ DBUS_TYPE_BOOLEAN, service != NULL,
0))
{
BUS_SET_OOM (error);
/**
* Checks whether a certain service exists.
*
- * @todo the SERVICE_EXISTS message should use BOOLEAN not UINT32
- *
* @param connection the connection
* @param service_name the service name
* @param error location to store any errors
}
if (!dbus_message_get_args (reply, error,
- DBUS_TYPE_UINT32, &exists,
+ DBUS_TYPE_BOOLEAN, &exists,
DBUS_TYPE_INVALID))
{
_DBUS_ASSERT_ERROR_IS_SET (error);