Browse Source

Oops. directory_set_dirty() needs to mark networkstatus as dirty too.

svn:r5066
Nick Mathewson 20 years ago
parent
commit
bc0af7046a
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/or/dirserv.c

+ 2 - 0
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;
 }
 
 /**