diff options
author | Roger Dingledine <arma@torproject.org> | 2006-07-06 02:44:07 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-07-06 02:44:07 +0000 |
commit | fad85f173a6a271af5ebbebffb778426febbce61 (patch) | |
tree | b0063651a95606839d164d8dbfbc47936f179114 /src/or/rendservice.c | |
parent | 3c4205c8724f6eb01dedc1ff6bbdd7f756320a4d (diff) | |
download | tor-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.c | 2 |
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; |