diff options
author | Roger Dingledine <arma@torproject.org> | 2006-04-16 22:34:00 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-04-16 22:34:00 +0000 |
commit | 07ff40987650bc845a4e8513378393f6ecd33a10 (patch) | |
tree | bd196ace5a7208cc4989d84a26635157eadfd564 | |
parent | ec3d47106e55571adeb4619ca2cb4ff4525ac4ba (diff) | |
download | tor-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.c | 2 |
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, |