summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-04-24 22:50:09 +0000
committerNick Mathewson <nickm@torproject.org>2004-04-24 22:50:09 +0000
commit3ace033c0cf6597d8f8ba55fc8067a7ec284a19b (patch)
tree4724305c284c83bf187174d7921bffe3f641bd66
parent220e8599127a5e4c66290e54b6faee08e96f17a1 (diff)
downloadtor-3ace033c0cf6597d8f8ba55fc8067a7ec284a19b.tar.gz
tor-3ace033c0cf6597d8f8ba55fc8067a7ec284a19b.zip
Spurious link-key should not be an error
svn:r1686
-rw-r--r--src/or/routerlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 6aabb3b3bc..84212c60c0 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -1008,7 +1008,7 @@ routerinfo_t *router_get_entry_from_string(const char *s,
tok->key = NULL; /* Prevent free */
if ((tok = find_first_by_keyword(tokens, K_LINK_KEY))) {
- log_fn(LOG_INFO, "Skipping obsolete link-key"); goto err;
+ log_fn(LOG_INFO, "Skipping obsolete link-key");
}
if (!(tok = find_first_by_keyword(tokens, K_SIGNING_KEY))) {