mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 20:33:31 +01:00
no need to escape the address for our connections -- they are
always IP addresses. svn:r6389
This commit is contained in:
parent
ec3d47106e
commit
07ff409876
@ -1317,7 +1317,7 @@ dumpstats(int severity)
|
|||||||
if (!connection_is_listener(conn)) {
|
if (!connection_is_listener(conn)) {
|
||||||
log(severity,LD_GENERAL,
|
log(severity,LD_GENERAL,
|
||||||
"Conn %d is to '%s:%d'.", i,
|
"Conn %d is to '%s:%d'.", i,
|
||||||
escaped_safe_str(conn->address), conn->port);
|
safe_str(conn->address), conn->port);
|
||||||
log(severity,LD_GENERAL,
|
log(severity,LD_GENERAL,
|
||||||
"Conn %d: %d bytes waiting on inbuf (len %d, last read %d secs ago)",
|
"Conn %d: %d bytes waiting on inbuf (len %d, last read %d secs ago)",
|
||||||
i,
|
i,
|
||||||
|
Loading…
Reference in New Issue
Block a user