diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-04-12 13:02:37 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-04-12 13:02:37 -0400 |
commit | eafcd7b0fccb0993d6c8bcaabc40231d0bdb5289 (patch) | |
tree | 7150d30d4d173ddf6d2c04109b1b8d97dfb70119 /src/or/directory.c | |
parent | 591029253f4b79de0ecd47c464623b0ce13270ef (diff) | |
parent | 7babf33239eb1e349826753a9d0405cb59150cce (diff) | |
download | tor-eafcd7b0fccb0993d6c8bcaabc40231d0bdb5289.tar.gz tor-eafcd7b0fccb0993d6c8bcaabc40231d0bdb5289.zip |
Merge branch 'maint-0.2.8'
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 11f7d06b75..dbb2987996 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; |