summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/network/test2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/network/test2.c b/tests/network/test2.c
index 5c6d362..5192bb2 100644
--- a/tests/network/test2.c
+++ b/tests/network/test2.c
@@ -181,7 +181,7 @@ ACCEPT_AGAIN:
if( errno == EINTR ) {
/* interrupted, again */
goto ACCEPT_AGAIN;
- } else if( errno == ECONNABORTED || errno == EPROTO ) {
+ } else if( errno == ECONNABORTED ) {
/* connection run away */
goto FIRST_ACCEPT_AGAIN;
} else {