summaryrefslogtreecommitdiff
path: root/TAO/tao/default_client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/default_client.cpp')
-rw-r--r--TAO/tao/default_client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/default_client.cpp b/TAO/tao/default_client.cpp
index 022e915d6a5..ab994a64462 100644
--- a/TAO/tao/default_client.cpp
+++ b/TAO/tao/default_client.cpp
@@ -136,7 +136,7 @@ TAO_Default_Client_Strategy_Factory::create_iiop_profile_lock (void)
// Create the correct client transport muxing strategy.
TAO_Transport_Mux_Strategy *
-TAO_Default_Client_Strategy_Factory::create_transport_mux_strategy (void)
+TAO_Default_Client_Strategy_Factory::create_transport_mux_strategy (TAO_ORB_Core *orb_core)
{
TAO_Transport_Mux_Strategy *tms = 0;
@@ -148,7 +148,7 @@ TAO_Default_Client_Strategy_Factory::create_transport_mux_strategy (void)
// @@ Alex: Always creating Exclusive TMS. (Alex).
ACE_NEW_RETURN (tms,
- TAO_Exclusive_TMS,
+ TAO_Exclusive_TMS (orb_core),
0);
return tms;