From 2b3be48832e2b926110abe185d1ba79d0ce64e00 Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 6 May 2006 15:31:52 +0000 Subject: Ignore EAGAIN when write()ing git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3931 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/users.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/users.cpp b/src/users.cpp index 42816932f..249b789e9 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -416,7 +416,8 @@ void userrec::FlushWriteBuf() int n_sent = write(this->fd,tb,this->sendq.length()); if (n_sent == -1) { - this->SetWriteError(strerror(errno)); + if (errno != EAGAIN) + this->SetWriteError(strerror(errno)); } else { -- cgit v1.2.3