diff options
author | David Goulet <dgoulet@torproject.org> | 2018-02-07 14:05:33 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-02-07 14:05:33 -0500 |
commit | 652d3a5b665f8045374eb527494dd9d80ef98d13 (patch) | |
tree | 9c2d0065c5b464755ee13daea50e8b044c74022a /src/or/main.c | |
parent | bf91da75abf84a6a61aa92adc5156ba1d5c15998 (diff) | |
download | tor-652d3a5b665f8045374eb527494dd9d80ef98d13.tar.gz tor-652d3a5b665f8045374eb527494dd9d80ef98d13.zip |
Remove anything related to the old SocksSockets option
At this commit, the SocksSocketsGroupWritable option is renamed to
UnixSocksGroupWritable. A deprecated warning is triggered if the old option is
used and tor will use it properly.
Fixes #24343
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 9ffc962d3e..d1f0044095 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -342,7 +342,7 @@ connection_remove(connection_t *conn) smartlist_len(connection_array)); if (conn->type == CONN_TYPE_AP && conn->socket_family == AF_UNIX) { - log_info(LD_NET, "Closing SOCKS SocksSocket connection"); + log_info(LD_NET, "Closing SOCKS Unix socket connection"); } control_event_conn_bandwidth(conn); |