]> granicus.if.org Git - libevent/commitdiff
fix a typo in a comment
authorNick Mathewson <nickm@torproject.org>
Wed, 29 Apr 2009 20:48:35 +0000 (20:48 +0000)
committerNick Mathewson <nickm@torproject.org>
Wed, 29 Apr 2009 20:48:35 +0000 (20:48 +0000)
svn:r1251

evutil.c

index 1a30aa6369adb5eaf2832faf38c17dedffe84342..781d54f873e85743e6c70c18f863a52e8bbfe68d 100644 (file)
--- 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));