diff options
author | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-01-26 13:45:01 +1100 |
---|---|---|
committer | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-01-26 13:46:54 +1100 |
commit | c927b6cb1aff4588a5f3729f8cc919ef3616d73e (patch) | |
tree | bf2cbe80576f334868997246b668f1cced8f78c6 /src/or/connection.c | |
parent | cbed61d1280d5f85b1670a70c9d8d2331b919e80 (diff) | |
download | tor-c927b6cb1aff4588a5f3729f8cc919ef3616d73e.tar.gz tor-c927b6cb1aff4588a5f3729f8cc919ef3616d73e.zip |
Correct grammatical errors in tor comments
Avoid using gender for things that don't have it.
Avoid assigning a gender to tor users.
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index c0031047e7..efe804df28 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -1440,7 +1440,7 @@ connection_handle_listener_read(connection_t *conn, int new_type) if (!SOCKET_OK(news)) { /* accept() error */ int e = tor_socket_errno(conn->s); if (ERRNO_IS_ACCEPT_EAGAIN(e)) { - return 0; /* he hung up before we could accept(). that's fine. */ + return 0; /* they hung up before we could accept(). that's fine. */ } else if (ERRNO_IS_RESOURCE_LIMIT(e)) { warn_too_many_conns(); return 0; |