mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Merge branch 'maint-0.2.8'
This commit is contained in:
commit
8340becd39
5
changes/bug18920
Normal file
5
changes/bug18920
Normal file
@ -0,0 +1,5 @@
|
||||
o Minor bugfixes (controller, microdescriptors):
|
||||
- Make GETINFO dir/status-vote/current/consensus conform to the control
|
||||
specification by returning "551 Could not open cached consensus..."
|
||||
when not caching consensuses.
|
||||
Fixes bug 18920; bugfix on 0.2.2.6-alpha.
|
@ -2011,6 +2011,11 @@ getinfo_helper_dir(control_connection_t *control_conn,
|
||||
char *filename = get_datadir_fname("cached-consensus");
|
||||
*answer = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL);
|
||||
tor_free(filename);
|
||||
if (!*answer) { /* generate an error */
|
||||
*errmsg = "Could not open cached consensus. "
|
||||
"Make sure FetchUselessDescriptors is set to 1.";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
} else if (!strcmp(question, "network-status")) { /* v1 */
|
||||
routerlist_t *routerlist = router_get_routerlist();
|
||||
|
Loading…
Reference in New Issue
Block a user