Browse Source

fixed misleading return value from send_datagram while bundling messages

Darren Ranalli 18 years ago
parent
commit
2f8cf96fd2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/distributed/cConnectionRepository.cxx

+ 1 - 1
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