summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2010-01-19 14:25:15 -0500
committerRoger Dingledine <arma@torproject.org>2010-01-19 14:25:15 -0500
commit708f47ecc996a5c04b93b9c3569a058fc6fa8d31 (patch)
treef0e31a987f5ddc160064274ed140c713b6edd6ba
parentadae6007152bfe04925bae75db87c97c1f62f92a (diff)
downloadtor-708f47ecc996a5c04b93b9c3569a058fc6fa8d31.tar.gz
tor-708f47ecc996a5c04b93b9c3569a058fc6fa8d31.zip
downgrade a warning
this case can now legitimately happen, if you have a cached v2 status from moria1, and you run with the new list of dirservers that's missing the old moria1. it's nothing to worry about; the file will die off in a month or two.
-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 42b385b101..9e91fe825b 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -4145,7 +4145,7 @@ update_router_descriptor_cache_downloads_v2(time_t now)
pds_flags |= PDS_NO_EXISTING_SERVERDESC_FETCH; /* XXXX ignored*/
if (!ds) {
- log_warn(LD_BUG, "Networkstatus with no corresponding authority!");
+ log_info(LD_DIR, "Networkstatus with no corresponding authority!");
continue;
}
if (! smartlist_len(dl))