summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-01-20 18:45:54 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-01-20 18:45:54 +0000
commit8aeb89543c4a2f38cf79bb37936979550e2267fb (patch)
treebafefb26243eb7515c4d0f2e3f91054dd065097a
parentb6310c06c776886bec3664d527ab0cab30b6ff63 (diff)
downloadATCD-8aeb89543c4a2f38cf79bb37936979550e2267fb.tar.gz
ChangeLogTag: Mon Jan 20 12:03:03 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tao/DynamicInterface/Request.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 3367a80360f..93fa4e533a8 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Mon Jan 20 12:03:03 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * tao/DynamicInterface/Request.cpp:
+
+ Fixed a bug in poll_response(). Thanks to Jaroslaw Nozderko
+ <jarek@eko.net.pl> for reporting it.
+
Mon Jan 20 08:00:44 2003 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* tao/Connection_Handler.cpp: Removed multiple inclusions of an
diff --git a/TAO/tao/DynamicInterface/Request.cpp b/TAO/tao/DynamicInterface/Request.cpp
index 0060fa8fe11..a6d7eeac089 100644
--- a/TAO/tao/DynamicInterface/Request.cpp
+++ b/TAO/tao/DynamicInterface/Request.cpp
@@ -371,7 +371,7 @@ CORBA_Request::poll_response (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
this->lock_,
0);
- return this->response_received_;
+ return this->orb_->work_pending ();
}
void