From 23aa13b2c7f95f2560fb8e8bcaba21d33731c6d5 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Tue, 31 Jul 2007 04:57:07 +0000 Subject: [PATCH] Doc fix. --- src/lib/gen/tcp_listen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/gen/tcp_listen.c b/src/lib/gen/tcp_listen.c index 0637f83a..909dec5e 100644 --- a/src/lib/gen/tcp_listen.c +++ b/src/lib/gen/tcp_listen.c @@ -86,8 +86,8 @@ tcp_listen(char *host, char *serv, size_t *addrlenp) * port is still in state TIME_WAIT. Windows' SO_REUSEADDR is * broken: it makes bind() succeed no matter what, even if * there's another server running on the same port. Luckily, - * bind() seems to be broken as well: it seems to suceed while - * the port in state TIME_WAIT by default; thus we get the + * bind() seems to be broken as well: it seems to succeed while + * the port is in state TIME_WAIT by default; thus we get the * behavior we want by not setting SO_REUSEADDR. */ if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) < 0)