diff options
author | Roger Dingledine <arma@torproject.org> | 2004-07-21 07:50:06 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-07-21 07:50:06 +0000 |
commit | 3e97c12f24398db96d4f1926020656a1561082ca (patch) | |
tree | d634e5d3acfd97a5f8f753d6a622db5ee94fb9e3 /src/or/routerlist.c | |
parent | 2d514037b7c9fa8a04eca4cf6e3864953b020d16 (diff) | |
download | tor-3e97c12f24398db96d4f1926020656a1561082ca.tar tor-3e97c12f24398db96d4f1926020656a1561082ca.tar.gz |
rearrange to prepare to solve the authdirserver initialization
precedence problem. doesn't actually solve it yet.
svn:r2079
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 250e7d2a8..2ba74d7ea 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -571,6 +571,7 @@ int router_load_routerlist_from_string(const char *s, int trusted) routerinfo_t *r = smartlist_get(new_list->routers, i); if (r->dir_port) { char *b; + log_fn(LOG_DEBUG,"Trusting router %s.", r->nickname); r->is_trusted_dir = 1; b = tor_malloc(DIGEST_LEN); memcpy(b, r->identity_digest, DIGEST_LEN); |