From 34bb5b690b6d8d79edcb7dbd9abda4c1ab2bdc5e Mon Sep 17 00:00:00 2001 From: "John (J5) Palmieri" Date: Fri, 10 Feb 2006 21:44:15 +0000 Subject: 2006-02-10 John (J5) Palmieri MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- bus/connection.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bus/connection.c') 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 >= -- cgit