summaryrefslogtreecommitdiff
path: root/src/or/routerparse.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-03-19 03:55:48 +0000
committerRoger Dingledine <arma@torproject.org>2006-03-19 03:55:48 +0000
commitd1d0813cf386a1fe377e34d64d659784d30d572e (patch)
tree53000c36150f79bd64a030da054449f58de5b378 /src/or/routerparse.c
parent726e825b09076c44af2fedc5185dbc959b877d3c (diff)
downloadtor-d1d0813cf386a1fe377e34d64d659784d30d572e.tar.gz
tor-d1d0813cf386a1fe377e34d64d659784d30d572e.zip
Allow non-printable characters for exit streams (both for
connecting and for resolving). Now we tolerate applications that don't follow the RFCs. But continue to block malformed names at the socks side. svn:r6193
Diffstat (limited to 'src/or/routerparse.c')
-rw-r--r--src/or/routerparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerparse.c b/src/or/routerparse.c
index 04bf3d4ed7..e180e2cc27 100644
--- a/src/or/routerparse.c
+++ b/src/or/routerparse.c
@@ -1020,7 +1020,7 @@ routerstatus_parse_entry_from_string(const char **s, smartlist_t *tokens)
}
if (tor_inet_aton(tok->args[5], &in) == 0) {
- log_warn(LD_DIR, "Error parsing address '%s'", escaped(tok->args[5]));
+ log_warn(LD_DIR, "Error parsing address %s", escaped(tok->args[5]));
goto err;
}
rs->addr = ntohl(in.s_addr);