tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 95060eacaeae4a32f0c478ca27f81e48d5daee8b
parent 9f0e8d8c032fadde93d2079d60eff289203a2fb9
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri,  7 Sep 2018 19:31:53 -0400

Use networkstatus_read_cached_consensus() for GETINFO

We already had fallback code for "dir/status-vote/current/consensus"
to read from disk if we didn't have a cached_dir_t available.  But
there's a function in networkstatus_t that does it for us, so let's
do that.

Diffstat:
Msrc/feature/control/control.c | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/feature/control/control.c b/src/feature/control/control.c @@ -2341,9 +2341,7 @@ getinfo_helper_dir(control_connection_t *control_conn, *answer = tor_strdup(consensus->dir); } if (!*answer) { /* try loading it from disk */ - char *filename = get_cachedir_fname("cached-consensus"); - *answer = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL); - tor_free(filename); + *answer = networkstatus_read_cached_consensus("ns"); if (!*answer) { /* generate an error */ *errmsg = "Could not open cached consensus. " "Make sure FetchUselessDescriptors is set to 1.";