diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-09 10:38:42 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-09 10:38:42 +0000 |
commit | b773045a584c73c7e3c902bf7eef76eea9b7469e (patch) | |
tree | 582fcb0fcb4d88859b845438233e111cdd011a0b /src/or/routerparse.c | |
parent | 3235c72f6cc85e20ced08657bbb49fafe4846273 (diff) | |
download | tor-b773045a584c73c7e3c902bf7eef76eea9b7469e.tar tor-b773045a584c73c7e3c902bf7eef76eea9b7469e.tar.gz |
only non-authdirservers cache the dir they just fetched
svn:r2747
Diffstat (limited to 'src/or/routerparse.c')
-rw-r--r-- | src/or/routerparse.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/or/routerparse.c b/src/or/routerparse.c index dcdc0563b..27e59ea9f 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -345,9 +345,11 @@ router_parse_routerlist_from_directory(const char *str, smartlist_free(tokens); tokens = NULL; - /* Now that we know the signature is okay, cache the directory. */ - /* XXXX009 extract published time if possible. */ - dirserv_set_cached_directory(str, time(NULL)); + if(!get_options()->AuthoritativeDir) { + /* Now that we know the signature is okay, cache the directory. */ + /* XXXX009 extract published time if possible. */ + dirserv_set_cached_directory(str, time(NULL)); + } /* Now that we know the signature is okay, check the version. */ if (check_version) |