summaryrefslogtreecommitdiff
path: root/TAO/tao/Messaging/AMH_Response_Handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Messaging/AMH_Response_Handler.cpp')
-rw-r--r--TAO/tao/Messaging/AMH_Response_Handler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Messaging/AMH_Response_Handler.cpp b/TAO/tao/Messaging/AMH_Response_Handler.cpp
index 65e1103bcde..76d617628e5 100644
--- a/TAO/tao/Messaging/AMH_Response_Handler.cpp
+++ b/TAO/tao/Messaging/AMH_Response_Handler.cpp
@@ -147,7 +147,7 @@ TAO_AMH_Response_Handler::_tao_rh_send_reply (void)
// Send the message.
int result = this->transport_->send_message (this->_tao_out,
0,
- TAO_REPLY);
+ TAO_Message_Semantics (TAO_Message_Semantics::TAO_REPLY));
if (result == -1)
{
@@ -212,7 +212,7 @@ TAO_AMH_Response_Handler::_tao_rh_send_exception (const CORBA::Exception &ex)
// Send the Exception
if (this->transport_->send_message (this->_tao_out,
0,
- TAO_REPLY) == -1)
+ TAO_Message_Semantics (TAO_Message_Semantics::TAO_REPLY)) == -1)
{
if (TAO_debug_level > 0)
ACE_ERROR ((LM_ERROR,
@@ -278,7 +278,7 @@ TAO_AMH_Response_Handler::_tao_rh_send_location_forward (CORBA::Object_ptr fwd,
// Send the Exception
if (this->transport_->send_message (this->_tao_out,
0,
- TAO_REPLY) == -1)
+ TAO_Message_Semantics (TAO_Message_Semantics::TAO_REPLY)) == -1)
{
if (TAO_debug_level > 0)
ACE_ERROR ((LM_ERROR,