summaryrefslogtreecommitdiff
path: root/src/or/dirserv.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-09-14 23:14:37 +0000
committerNick Mathewson <nickm@torproject.org>2005-09-14 23:14:37 +0000
commitbc0af7046a2d1025a1d7d5c54698841b1a8bee5b (patch)
tree7b319ac899160a1f2325b055224422fe143f9fc4 /src/or/dirserv.c
parentb903b98e03068f168434b067428fb643c3741776 (diff)
downloadtor-bc0af7046a2d1025a1d7d5c54698841b1a8bee5b.tar.gz
tor-bc0af7046a2d1025a1d7d5c54698841b1a8bee5b.zip
Oops. directory_set_dirty() needs to mark networkstatus as dirty too.
svn:r5066
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r--src/or/dirserv.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index d916922f73..71be0e1d1c 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -452,6 +452,8 @@ directory_set_dirty()
the_directory_is_dirty = now;
if (!runningrouters_is_dirty)
runningrouters_is_dirty = now;
+ if (!the_v2_networkstatus_is_dirty)
+ the_v2_networkstatus_is_dirty = now;
}
/**