diff options
author | David Goulet <dgoulet@ev0ke.net> | 2016-04-05 14:43:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-04-07 10:57:59 -0400 |
commit | 40827da3bfafb3191433d4151d48f79c511dcd42 (patch) | |
tree | 15708670690aa920a99c0b9580ecdbc38795969c /src/or/directory.c | |
parent | d8a056daed78c9794037931db81b97d596505bb7 (diff) | |
download | tor-40827da3bfafb3191433d4151d48f79c511dcd42.tar.gz tor-40827da3bfafb3191433d4151d48f79c511dcd42.zip |
Turn TestingClientBootstrap* into non-testing options
This changes simply renames them by removing "Testing" in front of them and
they do not require TestingTorNetwork to be enabled anymore.
Fixes #18481
Signed-off-by: David Goulet <dgoulet@ev0ke.net>
Diffstat (limited to 'src/or/directory.c')
-rw-r--r-- | src/or/directory.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index 749b3a8f74..ab9f738e84 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -3896,17 +3896,17 @@ find_dl_schedule(download_status_t *dls, const or_options_t *options) if (!use_fallbacks) { /* A bootstrapping client without extra fallback directories */ return - options->TestingClientBootstrapConsensusAuthorityOnlyDownloadSchedule; + options->ClientBootstrapConsensusAuthorityOnlyDownloadSchedule; } else if (dls->want_authority) { /* A bootstrapping client with extra fallback directories, but * connecting to an authority */ return - options->TestingClientBootstrapConsensusAuthorityDownloadSchedule; + options->ClientBootstrapConsensusAuthorityDownloadSchedule; } else { /* A bootstrapping client connecting to extra fallback directories */ return - options->TestingClientBootstrapConsensusFallbackDownloadSchedule; + options->ClientBootstrapConsensusFallbackDownloadSchedule; } } else { return options->TestingClientConsensusDownloadSchedule; |