aboutsummaryrefslogtreecommitdiff
path: root/src/or/dirserv.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-09-28 23:57:59 +0000
committerNick Mathewson <nickm@torproject.org>2006-09-28 23:57:59 +0000
commit907fc6c73ec7797361e53286e91c1bf21efa11d2 (patch)
tree77388f8888bff7b5b795beeddc14330fce3819fc /src/or/dirserv.c
parent1a444e089a9bbe840c9b14ddabe515461cb56575 (diff)
downloadtor-907fc6c73ec7797361e53286e91c1bf21efa11d2.tar
tor-907fc6c73ec7797361e53286e91c1bf21efa11d2.tar.gz
r8977@Kushana: nickm | 2006-09-28 19:56:41 -0400
Make "is a v1 authority", "is a v2 authority", and "is a hidden service authority" into separate flags so we can eventually migrate more trust away from moria. svn:r8523
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r--src/or/dirserv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index 5a35b2513..18d44199f 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -1025,7 +1025,7 @@ dirserv_set_cached_networkstatus_v2(const char *networkstatus,
digestmap_iter_get(iter, &ident, &val);
d = val;
if (d->published < oldest_published &&
- !router_get_trusteddirserver_by_digest(ident)) {
+ !router_digest_is_trusted_dir(ident)) {
oldest = ident;
oldest_published = d->published;
}