dbus/bus driver.c,1.59,1.60

Havoc Pennington hp@freedesktop.org
Mon Jan 17 11:49:54 PST 2005


Update of /cvs/dbus/dbus/bus
In directory gabe:/tmp/cvs-serv16881/bus

Modified Files:
	driver.c 
Log Message:
2005-01-17  Havoc Pennington  <hp@redhat.com>

	* dbus/dbus-types.h: hardcode dbus_bool_t to 32 bits

	* Throughout: modify DBUS_TYPE_BOOLEAN to be a 32-bit type instead
	of an 8-bit type. Now dbus_bool_t is the type to use whenever you 
	are marshaling/unmarshaling a boolean.



Index: driver.c
===================================================================
RCS file: /cvs/dbus/dbus/bus/driver.c,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- driver.c	16 Jan 2005 15:51:55 -0000	1.59
+++ driver.c	17 Jan 2005 19:49:52 -0000	1.60
@@ -519,7 +519,7 @@
   DBusMessage *reply;
   DBusString service_name;
   BusService *service;
-  unsigned char service_exists;
+  dbus_bool_t service_exists;
   const char *name;
   dbus_bool_t retval;
   BusRegistry *registry;



More information about the dbus-commit mailing list