summaryrefslogtreecommitdiff
path: root/TAO/tao/Invocation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Invocation.cpp')
-rw-r--r--TAO/tao/Invocation.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Invocation.cpp b/TAO/tao/Invocation.cpp
index 2b63e7da11a..590de76032d 100644
--- a/TAO/tao/Invocation.cpp
+++ b/TAO/tao/Invocation.cpp
@@ -632,7 +632,7 @@ TAO_GIOP_Synch_Invocation::invoke_i (CORBA::Boolean is_locate_request,
int reply_error =
this->transport_->wait_strategy ()->wait (this->max_wait_time_,
- this->rd_.reply_received ());
+ this->rd_);
if (TAO_debug_level > 0 && this->max_wait_time_ != 0)
@@ -804,7 +804,7 @@ TAO_GIOP_Twoway_Invocation::start (CORBA_Environment &ACE_TRY_ENV)
TAO_GIOP_Invocation::start (ACE_TRY_ENV);
ACE_CHECK;
- this->rd_.reply_received () = 0;
+ this->rd_.state_changed (TAO_LF_Event::LFS_ACTIVE);
}
// Send request, block until any reply comes back, and unmarshal reply
@@ -984,7 +984,7 @@ TAO_GIOP_Locate_Request_Invocation::start (CORBA_Environment &ACE_TRY_ENV)
this->transport_->generate_locate_request (this->target_spec_,
this->op_details_,
this->out_stream_);
- this->rd_.reply_received () = 0;
+ this->rd_.state_changed (TAO_LF_Event::LFS_ACTIVE);
}
// Send request, block until any reply comes back.