summaryrefslogtreecommitdiff
path: root/ace/Service_Manager.cpp
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-09-11 15:09:11 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-09-11 15:09:11 +0000
commit00fcbcb8abb05c149cef6d81e5ded823af6ad367 (patch)
treea1f22dbe647b3b985d1c92283843d4bbe72e37f5 /ace/Service_Manager.cpp
parentab60b0dd4394ea081dc27a9c67b5fab79f053e8c (diff)
downloadATCD-00fcbcb8abb05c149cef6d81e5ded823af6ad367.tar.gz
ChangeLogTag: Mon Sep 11 10:08:38 2000 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'ace/Service_Manager.cpp')
-rw-r--r--ace/Service_Manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Service_Manager.cpp b/ace/Service_Manager.cpp
index f54e8162d00..b9b93680a61 100644
--- a/ace/Service_Manager.cpp
+++ b/ace/Service_Manager.cpp
@@ -271,9 +271,9 @@ ACE_Service_Manager::handle_input (ACE_HANDLE)
// Keep looping until we actually get the request. Note that Win32
// sets the socket into non-blocking mode, so we may need to loop if
// the system is heavily loaded.
- do
+ do
result = client_stream_.recv (request, sizeof request);
- while (result == -1 && errno == EWOULDBLOCK)
+ while (result == -1 && errno == EWOULDBLOCK);
switch (result)
{