Skip to content

Commit

Permalink
fix a typo in a comment
Browse files Browse the repository at this point in the history
git-svn-id: http://levent.svn.sourceforge.net/svnroot/levent/trunk/libevent@1251 ce677c24-8c1a-0410-9497-a30ef3a96221
  • Loading branch information
nickm committed Apr 29, 2009
1 parent 96704fb commit 5fa63ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evutil.c
Expand Up @@ -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));
Expand Down

0 comments on commit 5fa63ed

Please sign in to comment.