diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2008-06-20 17:03:13 +0000 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2008-06-20 17:03:13 +0000 |
commit | 33ced73597ca064b0ce7076b1b1127be31dcec75 (patch) | |
tree | acf950b46bde2c64cae13721fd95e29bc8ff83ac /src/or/dirvote.c | |
parent | a2a3d1e3293abb04fef2d73218a224e1e757e214 (diff) | |
download | tor-33ced73597ca064b0ce7076b1b1127be31dcec75.tar.gz tor-33ced73597ca064b0ce7076b1b1127be31dcec75.zip |
Added prefixes to testing-network-only configuration options.
svn:r15375
Diffstat (limited to 'src/or/dirvote.c')
-rw-r--r-- | src/or/dirvote.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/dirvote.c b/src/or/dirvote.c index 2b686b8584..3a6c80178d 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -1308,9 +1308,9 @@ dirvote_recalculate_timing(or_options_t *options, time_t now) vote_delay = consensus->vote_seconds; dist_delay = consensus->dist_seconds; } else { - interval = options->V3AuthInitialVotingInterval; - vote_delay = options->V3AuthInitialVoteDelay; - dist_delay = options->V3AuthInitialDistDelay; + interval = options->TestingV3AuthInitialVotingInterval; + vote_delay = options->TestingV3AuthInitialVoteDelay; + dist_delay = options->TestingV3AuthInitialDistDelay; } tor_assert(interval > 0); |