aboutsummaryrefslogtreecommitdiff
path: root/src/or/networkstatus.c
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2014-09-05 01:37:25 +0200
committerNick Mathewson <nickm@torproject.org>2014-09-09 11:54:15 -0400
commit8099dee99234519a76580bb9ae479a878b7a45e0 (patch)
treebaef389c5733b45298bc66e3df08473cb5166d2d /src/or/networkstatus.c
parent59f3cce0dcddb98301d18d0cb4cb08c1619fa34c (diff)
downloadtor-8099dee99234519a76580bb9ae479a878b7a45e0.tar.gz
tor-8099dee99234519a76580bb9ae479a878b7a45e0.zip
Remove dirauth support for the BadDirectory flag
Implements the first half of #13060. The second half will be to remove client support, too.
Diffstat (limited to 'src/or/networkstatus.c')
-rw-r--r--src/or/networkstatus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c
index 026b988c34..220faf0202 100644
--- a/src/or/networkstatus.c
+++ b/src/or/networkstatus.c
@@ -1655,7 +1655,7 @@ networkstatus_getinfo_by_purpose(const char *purpose_string, time_t now)
if (bridge_auth && ri->purpose == ROUTER_PURPOSE_BRIDGE)
dirserv_set_router_is_running(ri, now);
/* then generate and write out status lines for each of them */
- set_routerstatus_from_routerinfo(&rs, node, ri, now, 0, 0, 0);
+ set_routerstatus_from_routerinfo(&rs, node, ri, now, 0, 0);
smartlist_add(statuses, networkstatus_getinfo_helper_single(&rs));
} SMARTLIST_FOREACH_END(ri);