From f9f091eb0eb81b0a1d9a104da7802cbd8f3607a3 Mon Sep 17 00:00:00 2001
From: Roger Dingledine <arma@torproject.org>
Date: Tue, 7 Oct 2003 20:02:45 +0000
Subject: [PATCH] do not ask for whom there's an error, it polls for thee

svn:r548
---
 src/common/fakepoll.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/common/fakepoll.c b/src/common/fakepoll.c
index 27804ba0e0..d1936f8e44 100644
--- a/src/common/fakepoll.c
+++ b/src/common/fakepoll.c
@@ -61,8 +61,7 @@ poll(struct pollfd *ufds, unsigned int nfds, int timeout)
 			FD_SET(fd, &readfds);
 		if (ufds[idx].events & POLLOUT)
 			FD_SET(fd, &writefds);
-		if (ufds[idx].events & POLLERR)
-			FD_SET(fd, &exceptfds);
+		FD_SET(fd, &exceptfds);
 	}
 #ifdef MS_WINDOWS
         if (!any_fds_set) {
-- 
GitLab