summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-bus.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2003-04-07 23:28:16 +0000
committerHavoc Pennington <hp@redhat.com>2003-04-07 23:28:16 +0000
commitfe22b2194d53061fefe64d48ff6a53e6a762279d (patch)
tree590e2096930716d80fb2ba1ebfce10c10e08efda /dbus/dbus-bus.c
parent1617fbe36c0bc2952093fc167b6edffdf32c445e (diff)
2003-04-07 Havoc Pennington <hp@redhat.com>
* doc/dbus-specification.sgml: require that base service names start with ':' and that the base service is created/deleted as first and last things a connection does on the bus * bus/dispatch.c (check_existent_service_activation): lots more work on the activation test; it doesn't fully pass yet... * test/test-service.c (main): fix so we don't memleak the connection to the message bus (filter_func): accept a message asking us to exit
Diffstat (limited to 'dbus/dbus-bus.c')
-rw-r--r--dbus/dbus-bus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/dbus-bus.c b/dbus/dbus-bus.c
index c16ceeb4..74703866 100644
--- a/dbus/dbus-bus.c
+++ b/dbus/dbus-bus.c
@@ -242,7 +242,7 @@ static void
bus_data_free (void *data)
{
BusData *bd = data;
-
+
if (bd->is_well_known)
{
int i;
@@ -253,7 +253,7 @@ bus_data_free (void *data)
{
if (bus_connections[i] == bd->connection)
bus_connections[i] = NULL;
-
+
++i;
}
_DBUS_UNLOCK (bus);