diff options
-rw-r--r-- | httpd.c | 3 | ||||
-rw-r--r-- | sockets.c | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -143,7 +143,8 @@ httpCheckFds(rfbScreenInfoPtr rfbScreen) #ifdef WIN32 errno = WSAGetLastError(); #endif - rfbLogPerror("httpCheckFds: select"); + if (errno != EINTR) + rfbLogPerror("httpCheckFds: select"); return; } @@ -218,7 +218,8 @@ rfbCheckFds(rfbScreenInfoPtr rfbScreen,long usec) #ifdef WIN32 errno = WSAGetLastError(); #endif - rfbLogPerror("rfbCheckFds: select"); + if (errno != EINTR) + rfbLogPerror("rfbCheckFds: select"); return; } |