diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-01-29 14:45:21 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-01-29 14:46:20 -0500 |
commit | 204374f7d92997a510a7aabe5ec57f0f87a3499f (patch) | |
tree | 02c50353471c76167d4bc7c6c22af3407bdeaf22 /src/or/connection.c | |
parent | ebc59092bc6badaa55743d85e6095c3e2d4993ff (diff) | |
download | tor-204374f7d92997a510a7aabe5ec57f0f87a3499f.tar.gz tor-204374f7d92997a510a7aabe5ec57f0f87a3499f.zip |
Remove SocksSocket; it's now spelled differently thanks to 14451
Also, revise bug12585 changes file to mention new syntax
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 f26ada096b..170d3d7f1e 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -1496,7 +1496,7 @@ connection_handle_listener_read(connection_t *conn, int new_type) if (new_type == CONN_TYPE_AP && conn->socket_family == AF_UNIX) { newconn->port = 0; newconn->address = tor_strdup(conn->address); - log_info(LD_NET, "New SOCKS SocksSocket connection opened"); + log_info(LD_NET, "New SOCKS AF_UNIX connection opened"); } if (new_type == CONN_TYPE_CONTROL) { log_notice(LD_CONTROL, "New control connection opened from %s.", |