From 2f8cf96fd205e0517101261fd77900d5072afbbf Mon Sep 17 00:00:00 2001 From: Darren Ranalli Date: Wed, 30 Jan 2008 19:57:08 +0000 Subject: [PATCH] fixed misleading return value from send_datagram while bundling messages --- direct/src/distributed/cConnectionRepository.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/distributed/cConnectionRepository.cxx b/direct/src/distributed/cConnectionRepository.cxx index 4935fe9952..25313a87d2 100644 --- a/direct/src/distributed/cConnectionRepository.cxx +++ b/direct/src/distributed/cConnectionRepository.cxx @@ -395,7 +395,7 @@ send_datagram(const Datagram &dg) { if (is_bundling_messages() && get_want_message_bundling()) { bundle_msg(dg); - return false; + return true; } #ifdef WANT_NATIVE_NET