From 4b29d669fc8e14de0f331e7b8d02792d42ab3709 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 19 Jun 2001 18:23:13 +0000 Subject: [PATCH] Ignore EAGAIN errors in read_request. --- server/request.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/request.c b/server/request.c index cddf43808e2..8849e09f46a 100644 --- a/server/request.c +++ b/server/request.c @@ -188,7 +188,7 @@ void read_request( struct thread *thread ) kill_thread( thread, 0 ); else if (ret > 0) fatal_protocol_error( thread, "partial read %d\n", ret ); - else + else if (errno != EWOULDBLOCK && errno != EAGAIN) fatal_protocol_perror( thread, "read" ); }