diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-04-27 12:28:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-04-27 12:28:04 +0000 |
commit | 8465a367a41dea71603984b6a6bc08e177ef8a8c (patch) | |
tree | 30da3804003588a272fd9112b2571a7bc42bfe7a | |
parent | 3bcfe678ab8f61fc589f1a2f617eedf1f7835205 (diff) |
listen(..., 1) as 0 doesn't work on Tru64!
-rw-r--r-- | tests/server/sockfilt.c | 2 |
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); } |