[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - net/Socket.hpp
Jan Holesovsky
kendy at collabora.com
Thu Mar 30 09:22:48 UTC 2017
net/Socket.hpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 0d57eacc11e4e4cb03785ae7403bba6746f5edbb
Author: Jan Holesovsky <kendy at collabora.com>
Date: Thu Mar 30 11:21:10 2017 +0200
Avoid extensive warning about a normal situation.
Change-Id: Ie67a12847afddac087f74e4872744b2b8bb07b1e
diff --git a/net/Socket.hpp b/net/Socket.hpp
index 8bddac16..111b32df 100644
--- a/net/Socket.hpp
+++ b/net/Socket.hpp
@@ -792,7 +792,7 @@ protected:
// log.dump("", &_outBuffer[0], len);
}
- if (len <= 0)
+ if (len <= 0 && errno != EAGAIN && errno != EWOULDBLOCK)
LOG_SYS("#" << getFD() << ": Wrote outgoing data " << len << " bytes.");
}
while (len < 0 && errno == EINTR);
More information about the Libreoffice-commits
mailing list