summaryrefslogtreecommitdiff
path: root/TAO/tao/UIOP_Connect.cpp
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-06-16 20:15:25 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-06-16 20:15:25 +0000
commit99bb6fb665611ddd98a71c75d9f33bfd0c1d7c9b (patch)
tree9d6733547f5f42ea89ded14110c3d1ae1e61d484 /TAO/tao/UIOP_Connect.cpp
parent135a5704b855f6be64fb62c4dee40cd566348df2 (diff)
downloadATCD-99bb6fb665611ddd98a71c75d9f33bfd0c1d7c9b.tar.gz
ChangeLogTag:Fri Jun 16 12:07:39 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/tao/UIOP_Connect.cpp')
-rw-r--r--TAO/tao/UIOP_Connect.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/TAO/tao/UIOP_Connect.cpp b/TAO/tao/UIOP_Connect.cpp
index 1b92cb113a7..1a1a05d8912 100644
--- a/TAO/tao/UIOP_Connect.cpp
+++ b/TAO/tao/UIOP_Connect.cpp
@@ -430,8 +430,10 @@ TAO_UIOP_Client_Connection_Handler::close (u_long /* flags */)
int
TAO_UIOP_Client_Connection_Handler::handle_input (ACE_HANDLE)
{
- // Call the waiter to handle the input.
- return this->transport ()->wait_strategy ()->handle_input ();
+ int r = this->transport ()->handle_client_input ();
+ if (r == -1)
+ return -1;
+ return 0;
}
int