summaryrefslogtreecommitdiff
path: root/src/or/routerparse.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-06-24 23:42:15 +0000
committerNick Mathewson <nickm@torproject.org>2005-06-24 23:42:15 +0000
commitb759fe4b8df2fc512b2ce5e0e9422cce8ebc3bb7 (patch)
treee483134ea1bfece422714b16f177efde290f4f9a /src/or/routerparse.c
parentc831a9f7017dcc6adac47bf0bf897632c0000a0d (diff)
downloadtor-b759fe4b8df2fc512b2ce5e0e9422cce8ebc3bb7.tar.gz
tor-b759fe4b8df2fc512b2ce5e0e9422cce8ebc3bb7.zip
It is not the end of the world when a router descriptor has an unrecognized kwd
svn:r4480
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 f2a3515af6..65e5e1356f 100644
--- a/src/or/routerparse.c
+++ b/src/or/routerparse.c
@@ -853,7 +853,7 @@ router_parse_entry_from_string(const char *s, const char *end)
goto err;
}
if ((tok = find_first_by_keyword(tokens, _UNRECOGNIZED))) {
- log_fn(LOG_WARN, "Unrecognized keyword '%s'; skipping descriptor.",
+ log_fn(LOG_INFO, "Unrecognized critical keyword '%s'; skipping descriptor. (It may be from another version of Tor.)",
tok->args[0]);
goto err;
}