aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-04-27 12:28:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-04-27 12:28:04 +0000
commit8465a367a41dea71603984b6a6bc08e177ef8a8c (patch)
tree30da3804003588a272fd9112b2571a7bc42bfe7a /tests
parent3bcfe678ab8f61fc589f1a2f617eedf1f7835205 (diff)
listen(..., 1) as 0 doesn't work on Tru64!
Diffstat (limited to 'tests')
-rw-r--r--tests/server/sockfilt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server/sockfilt.c b/tests/server/sockfilt.c
index 3244549c8..a174f902e 100644
--- a/tests/server/sockfilt.c
+++ b/tests/server/sockfilt.c
@@ -644,7 +644,7 @@ int main(int argc, char *argv[])
}
/* start accepting connections */
- listen(sock, 0);
+ listen(sock, 1);
}