diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-04-24 22:50:09 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-04-24 22:50:09 +0000 |
commit | 3ace033c0cf6597d8f8ba55fc8067a7ec284a19b (patch) | |
tree | 4724305c284c83bf187174d7921bffe3f641bd66 /src/or | |
parent | 220e8599127a5e4c66290e54b6faee08e96f17a1 (diff) | |
download | tor-3ace033c0cf6597d8f8ba55fc8067a7ec284a19b.tar tor-3ace033c0cf6597d8f8ba55fc8067a7ec284a19b.tar.gz |
Spurious link-key should not be an error
svn:r1686
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 6aabb3b3b..84212c60c 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))) { |