From e4b4e7c28d4767d29b4348227948e5bd28e13a64 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Mon, 18 Nov 2019 11:35:21 +0100 Subject: Apply common 23752f6 and e10272e --- contrib/Socket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/Socket.cpp') diff --git a/contrib/Socket.cpp b/contrib/Socket.cpp index 50a12ba..bfbef93 100644 --- a/contrib/Socket.cpp +++ b/contrib/Socket.cpp @@ -650,7 +650,7 @@ ssize_t TCPSocket::recv(void *buffer, size_t length, int flags, int timeout_ms) std::string errstr(strerror(errno)); throw std::runtime_error("TCP receive with poll() error: " + errstr); } - else if (retval > 0 and (fds[0].revents | POLLIN)) { + else if (retval > 0 and (fds[0].revents & POLLIN)) { ssize_t ret = ::recv(m_sock, buffer, length, flags); if (ret == -1) { if (errno == ECONNREFUSED) { -- cgit v1.2.3