summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-04-16 22:34:00 +0000
committerRoger Dingledine <arma@torproject.org>2006-04-16 22:34:00 +0000
commit07ff40987650bc845a4e8513378393f6ecd33a10 (patch)
treebd196ace5a7208cc4989d84a26635157eadfd564
parentec3d47106e55571adeb4619ca2cb4ff4525ac4ba (diff)
downloadtor-07ff40987650bc845a4e8513378393f6ecd33a10.tar.gz
tor-07ff40987650bc845a4e8513378393f6ecd33a10.zip
no need to escape the address for our connections -- they are
always IP addresses. svn:r6389
-rw-r--r--src/or/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c
index 78e53ddb51..bc81b3746b 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -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,