diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-08-26 22:16:09 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-08-26 22:16:09 +0000 |
commit | ed070b0fdbc8df99cc564ac94e5af2e661990863 (patch) | |
tree | e899e9c769813cf252c42741c1255790da51a18c /src | |
parent | 6577e08e3850b422432fc3f0d755bbfdc3b6e120 (diff) | |
download | tor-ed070b0fdbc8df99cc564ac94e5af2e661990863.tar tor-ed070b0fdbc8df99cc564ac94e5af2e661990863.tar.gz |
Set a variable that exists. That works better.
svn:r4868
Diffstat (limited to 'src')
-rw-r--r-- | src/or/dirserv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 87c9ae2d5..8ef5c8013 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -22,7 +22,7 @@ extern long stats_n_seconds_working; /** Do we need to regenerate the directory when someone asks for it? */ static int the_directory_is_dirty = 1; static int runningrouters_is_dirty = 1; -static int networkstatus_v2_is_dirty = 1; +static int the_v2_networkstatus_is_dirty = 1; static void directory_remove_invalid(void); static int dirserv_regenerate_directory(void); @@ -1192,7 +1192,7 @@ dirserv_get_networkstatus_v2(const char **directory, const char *key, if (get_options()->AuthoritativeDir) { return dirserv_get_obj(directory, compress, NULL, &the_v2_networkstatus, - networkstatus_v2_is_dirty, + the_v2_networkstatus_is_dirty, generate_v2_networkstatus, "network status list"); } |