diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-11-08 14:25:30 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-11-08 14:25:30 +0000 |
commit | 200b9b7f555000b74f72482ddc2bd3d4ffb1eed0 (patch) | |
tree | 96057a10ddfedff8898fe0095c619cc48e2bfb01 /cpp/src/IceSSL/SslTransceiver.cpp | |
parent | Updated (diff) | |
download | ice-200b9b7f555000b74f72482ddc2bd3d4ffb1eed0.tar.bz2 ice-200b9b7f555000b74f72482ddc2bd3d4ffb1eed0.tar.xz ice-200b9b7f555000b74f72482ddc2bd3d4ffb1eed0.zip |
Fixed bug 588
Diffstat (limited to 'cpp/src/IceSSL/SslTransceiver.cpp')
-rw-r--r-- | cpp/src/IceSSL/SslTransceiver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceSSL/SslTransceiver.cpp b/cpp/src/IceSSL/SslTransceiver.cpp index b23974e1ebf..88d3552a20e 100644 --- a/cpp/src/IceSSL/SslTransceiver.cpp +++ b/cpp/src/IceSSL/SslTransceiver.cpp @@ -147,7 +147,7 @@ IceSSL::SslTransceiver::write(Buffer& buf, int timeout) case SSL_ERROR_WANT_WRITE: { writeSelect(timeout); - break; + continue; } // @@ -157,7 +157,7 @@ IceSSL::SslTransceiver::write(Buffer& buf, int timeout) //case SSL_ERROR_WANT_READ: //{ // readSelect(timeout); - // break; + // continue; //} case SSL_ERROR_SYSCALL: @@ -279,7 +279,7 @@ IceSSL::SslTransceiver::read(Buffer& buf, int timeout) //case SSL_ERROR_WANT_WRITE: //{ // writeSelect(timeout); - // break; + // continue; //} case SSL_ERROR_SYSCALL: |