summaryrefslogtreecommitdiffstats
path: root/httpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/httpd.c b/httpd.c
index bae63c5..7a0574e 100644
--- a/httpd.c
+++ b/httpd.c
@@ -143,7 +143,8 @@ httpCheckFds(rfbScreenInfoPtr rfbScreen)
#ifdef WIN32
errno = WSAGetLastError();
#endif
- rfbLogPerror("httpCheckFds: select");
+ if (errno != EINTR)
+ rfbLogPerror("httpCheckFds: select");
return;
}