[or-cvs] no need to escape the address for our connections -- they are

arma at seul.org arma at seul.org
Sun Apr 16 22:34:03 UTC 2006


Update of /home2/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/cvs/tor/src/or

Modified Files:
	main.c 
Log Message:
no need to escape the address for our connections -- they are
always IP addresses.


Index: main.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/main.c,v
retrieving revision 1.641
retrieving revision 1.642
diff -u -p -d -r1.641 -r1.642
--- main.c	10 Apr 2006 21:29:29 -0000	1.641
+++ main.c	16 Apr 2006 22:34:00 -0000	1.642
@@ -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,



More information about the tor-commits mailing list