diff --git a/ChangeLog b/ChangeLog index f1c4dd6d..2beb2ad9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-02-10 John (J5) Palmieri + + * bus/connection.c (bus_connections_expect_reply): Make + pending reply limit not common to all connections (Bug #5416) + Patch from Kimmo Hämäläinen + 2006-02-10 John (J5) Palmieri * tools/dbus-launch.c: Fixed csh syntax output (Bug #5720) diff --git a/bus/connection.c b/bus/connection.c index 90c6b75b..d15a4266 100644 --- a/bus/connection.c +++ b/bus/connection.c @@ -1606,7 +1606,8 @@ bus_connections_expect_reply (BusConnections *connections, link = _dbus_list_get_next_link (&connections->pending_replies->items, link); - ++count; + if (pending->will_get_reply == will_get_reply) + ++count; } if (count >=