summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorteor (Tim Wilson-Brown) <teor2345@gmail.com>2015-09-16 03:59:30 +1000
committerteor (Tim Wilson-Brown) <teor2345@gmail.com>2015-09-16 03:59:30 +1000
commitfd85f2cd706fe86499962f2364f99daa220186a8 (patch)
tree5dcbf19517887e46bba4491f328a899f5d6152e4
parentab6f93caa719c2b2571b771087efba53d3d51bbf (diff)
downloadtor-fd85f2cd706fe86499962f2364f99daa220186a8.tar.gz
tor-fd85f2cd706fe86499962f2364f99daa220186a8.zip
fixup Clarify ambiguous log message in router_add_exit_policy
-rw-r--r--src/or/routerparse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/routerparse.c b/src/or/routerparse.c
index 8e56d16724..17c46acfda 100644
--- a/src/or/routerparse.c
+++ b/src/or/routerparse.c
@@ -3785,7 +3785,8 @@ router_add_exit_policy(routerinfo_t *router, directory_token_t *tok)
/* There's nothing the user can do about other relays' descriptors,
* so we don't provide usage advice here. */
log_warn(LD_DIR, "Mismatch between field type and address type in exit "
- "policy '%s'. Ignoring.", tok->n_args == 1 ? tok->args[0] : "");
+ "policy '%s'. Discarding entire router descriptor.",
+ tok->n_args == 1 ? tok->args[0] : "");
addr_policy_free(newe);
return -1;
}