1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 15:48:49 -05:00

listen(..., 1) as 0 doesn't work on Tru64!

This commit is contained in:
Daniel Stenberg 2005-04-27 12:28:04 +00:00
parent 3bcfe678ab
commit 8465a367a4

View File

@ -644,7 +644,7 @@ int main(int argc, char *argv[])
}
/* start accepting connections */
listen(sock, 0);
listen(sock, 1);
}