From 93179f4e7e68332e7316e40edcb14b584b8c712c Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 2 Sep 2005 06:19:31 +0000 Subject: [PATCH] bugfix: moria2 wasn't listing itself as verified in its directory svn:r4893 --- src/or/routerlist.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 2f20d0d79d..c30e35bafd 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -904,7 +904,10 @@ router_add_to_routerlist(routerinfo_t *router, const char **msg) if (router->published_on <= old_router->published_on) { log_fn(LOG_DEBUG, "Skipping not-new descriptor for router '%s'", router->nickname); - if (!authdir) { + if (authdir) { + /* Update the is_verified status based on our lookup. */ + old_router->is_verified = router->is_verified; + } else { /* Update the is_running status to whatever we were told. */ old_router->is_running = router->is_running; }