summaryrefslogtreecommitdiff
path: root/lib/SocketClient.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/SocketClient.cc')
-rw-r--r--lib/SocketClient.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/SocketClient.cc b/lib/SocketClient.cc
index a86629a..cc59014 100644
--- a/lib/SocketClient.cc
+++ b/lib/SocketClient.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: SocketClient.cc,v 1.1 2007-10-12 13:07:42 pixel Exp $ */
+/* $Id: SocketClient.cc,v 1.2 2007-10-15 13:47:12 pixel Exp $ */
#include <TaskMan.h>
#include <SocketClient.h>
@@ -67,7 +67,6 @@ void SocketClient::subDo() throw (GeneralException) {
}
RemoveTimeout();
- WaitFor(timeout);
return;
default:
@@ -82,7 +81,10 @@ void SocketClient::subDo() throw (GeneralException) {
}
RemoveTimeout();
- WaitFor(timeout);
return;
}
}
+
+void SocketClient::WaitTimeout() {
+ WaitFor(timeout);
+}