From: Nick Mathewson Date: Wed, 29 Apr 2009 20:48:35 +0000 (+0000) Subject: fix a typo in a comment X-Git-Tag: release-2.0.3-alpha~262 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50e20fe076ce1b4f6728a6fd715e14629b0b25ca;p=libevent fix a typo in a comment svn:r1251 --- 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));