aboutsummaryrefslogtreecommitdiff
path: root/tests/websockets_bi.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/websockets_bi.c')
-rw-r--r--tests/websockets_bi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/websockets_bi.c b/tests/websockets_bi.c
index c2dbb7da..18cdd664 100644
--- a/tests/websockets_bi.c
+++ b/tests/websockets_bi.c
@@ -35,7 +35,7 @@ unsigned int get_all_buf(int sock, char* output, unsigned int maxsize)
}
}
- if(n < 0) {
+ if(n < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
fprintf(stderr, "error in get_all_buf!");
exit(EXIT_FAILURE);
}