From bac3bedc9faae28b71ace255b0e82efc62dadfb0 Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 7 Mar 2006 17:37:17 +0000 Subject: true and false transposed in new code git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3520 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/socket.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/socket.cpp') diff --git a/src/socket.cpp b/src/socket.cpp index d28122b73..6ea91a83f 100644 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -285,11 +285,11 @@ bool InspSocket::FlushWriteBuffer() log(DEBUG,"Write error on socket: %s",strerror(errno)); this->OnError(I_ERR_WRITE); this->state = I_ERROR; - return false; + return true; } } } - return true; + return false; } bool InspSocket::Timeout(time_t current) @@ -345,7 +345,7 @@ bool InspSocket::Poll() * Both FlushWriteBuffer AND the return result of OnDataReady must * return true for this to be ok. */ - return (n && this->FlushWriteBuffer()); + return (n && !this->FlushWriteBuffer()); break; default: break; -- cgit v1.3.1-10-gc9f91