]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/socket.cpp
Remove 'validation' for server description and network name (didn't do anything)
[user/henk/code/inspircd.git] / src / socket.cpp
index b7d102647343afa06364eaa4cadc455d0b05f3cc..df018bb4749418474ebdc501134f4dadcccdf2e5 100644 (file)
@@ -307,7 +307,7 @@ bool InspSocket::FlushWriteBuffer()
                        }
                }
        }
-       return (fd > -1);
+       return (fd < 0);
 }
 
 bool InspSocket::Timeout(time_t current)
@@ -381,7 +381,7 @@ bool InspSocket::Poll()
                         * Both FlushWriteBuffer AND the return result of OnDataReady must
                         * return true for this to be ok.
                         */
-                       if (!this->FlushWriteBuffer())
+                       if (this->FlushWriteBuffer())
                                return false;
                        return n;
                break;