diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/socket.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/socket.cpp b/src/socket.cpp index 767e2c468..b7d102647 100644 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -307,7 +307,7 @@ bool InspSocket::FlushWriteBuffer() } } } - return false; + return (fd > -1); } bool InspSocket::Timeout(time_t current) @@ -381,7 +381,9 @@ bool InspSocket::Poll() * Both FlushWriteBuffer AND the return result of OnDataReady must * return true for this to be ok. */ - return (n && !this->FlushWriteBuffer()); + if (!this->FlushWriteBuffer()) + return false; + return n; break; default: break; |