aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendservice.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-07-06 02:44:07 +0000
committerRoger Dingledine <arma@torproject.org>2006-07-06 02:44:07 +0000
commitfad85f173a6a271af5ebbebffb778426febbce61 (patch)
treeb0063651a95606839d164d8dbfbc47936f179114 /src/or/rendservice.c
parent3c4205c8724f6eb01dedc1ff6bbdd7f756320a4d (diff)
downloadtor-fad85f173a6a271af5ebbebffb778426febbce61.tar
tor-fad85f173a6a271af5ebbebffb778426febbce61.tar.gz
when an exit node gets a malformed begin cell, don't complain to
the node operator, since he can't do anything about it. svn:r6733
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r--src/or/rendservice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index 9eaf82161..e6b2ca8cb 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -179,7 +179,7 @@ parse_port_config(const char *string)
} else {
addrport = smartlist_get(sl,1);
if (strchr(addrport, ':') || strchr(addrport, '.')) {
- if (parse_addr_port(addrport, NULL, &addr, &p)<0) {
+ if (parse_addr_port(LOG_WARN, addrport, NULL, &addr, &p)<0) {
log_warn(LD_CONFIG,"Unparseable address in hidden service port "
"configuration.");
goto err;