summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-04-06 00:04:43 +0200
committerAndreas Baumann <abaumann@yahoo.com>2009-04-06 00:04:43 +0200
commitbe7c067680b31d54233c875d159db29cb38739ff (patch)
treec274c091d680c41d7a09a37e7dc8c467285b1768 /tests
parentde2a34dc7f2ab04674d974bbdf815af6a1da7a59 (diff)
downloadwolfbones-be7c067680b31d54233c875d159db29cb38739ff.tar.gz
wolfbones-be7c067680b31d54233c875d159db29cb38739ff.tar.bz2
no EPROTO in accept in test2
Diffstat (limited to 'tests')
-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 {