summaryrefslogtreecommitdiffstats
path: root/httpd.c
diff options
context:
space:
mode:
authordscho <dscho>2003-08-08 08:12:50 +0000
committerdscho <dscho>2003-08-08 08:12:50 +0000
commit98c888cd6b32e34ed82696e4ced13c9bdf278695 (patch)
treeb279a473f8c9f05e1f894765e1f14350d0d26021 /httpd.c
parent4fcb60871bb33d48e68bbd8f40a84aa4cfa2c805 (diff)
downloadlibtdevnc-98c888cd6b32e34ed82696e4ced13c9bdf278695.tar.gz
libtdevnc-98c888cd6b32e34ed82696e4ced13c9bdf278695.zip
handle EINTR after select()
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;
}