Skip to content
Snippets Groups Projects
Commit 07ff4098 authored by Roger Dingledine's avatar Roger Dingledine
Browse files

no need to escape the address for our connections -- they are

always IP addresses.


svn:r6389
parent ec3d4710
Branches
Tags
No related merge requests found
......@@ -1317,7 +1317,7 @@ dumpstats(int severity)
if (!connection_is_listener(conn)) {
log(severity,LD_GENERAL,
"Conn %d is to '%s:%d'.", i,
escaped_safe_str(conn->address), conn->port);
safe_str(conn->address), conn->port);
log(severity,LD_GENERAL,
"Conn %d: %d bytes waiting on inbuf (len %d, last read %d secs ago)",
i,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment