summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport_Cache_Manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Transport_Cache_Manager.cpp')
-rw-r--r--TAO/tao/Transport_Cache_Manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Transport_Cache_Manager.cpp b/TAO/tao/Transport_Cache_Manager.cpp
index e19593d4cdd..e994b083a3b 100644
--- a/TAO/tao/Transport_Cache_Manager.cpp
+++ b/TAO/tao/Transport_Cache_Manager.cpp
@@ -425,7 +425,7 @@ namespace TAO
if (result && entry.int_id_.transport () != 0)
{
// if it's not connected, it's not available
- result = entry.int_id_.transport ()->is_connected();
+ result = entry.int_id_.is_connected_;
}
if (TAO_debug_level > 8)
@@ -450,7 +450,7 @@ namespace TAO
{
// if we're not connected, that counts, too.
// Can this happen? Not sure <wilsond@ociweb.com>
- result = !entry.int_id_.transport ()->is_connected();
+ result = !entry.int_id_.is_connected_;
}
if (TAO_debug_level > 8)