From 600d241c05cd28e5fc566a4b2eb6abc79aff4735 Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 6 May 2006 15:32:13 +0000 Subject: Backport of EAGAIN check git-svn-id: http://svn.inspircd.org/repository/branches/1_0_stable@3932 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/users.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/users.cpp') diff --git a/src/users.cpp b/src/users.cpp index e67ad7cec..2e7ba7947 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -388,7 +388,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.3.1-10-gc9f91