From 50e20fe076ce1b4f6728a6fd715e14629b0b25ca Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 29 Apr 2009 20:48:35 +0000 Subject: [PATCH] fix a typo in a comment svn:r1251 --- evutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evutil.c b/evutil.c index 1a30aa63..781d54f8 100644 --- a/evutil.c +++ b/evutil.c @@ -195,7 +195,7 @@ evutil_make_listen_socket_reuseable(evutil_socket_t sock) #ifndef WIN32 int one = 1; /* REUSEADDR on Unix means, "don't hang on to this address after the - * listener is closed." On Windows, thoug, it means "don't keep other + * listener is closed." On Windows, though, it means "don't keep other * processes from binding to this address while we're using it. */ return setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void*) &one, (socklen_t)sizeof(one)); -- 2.40.0