diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2013-03-28 09:42:49 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-03-28 09:32:19 -0400 |
commit | 1bce70a9e3b33d02b2bae4b94a1774db38d19d3a (patch) | |
tree | 8e6de78857922f0e4d00bcd33069b405bb318f9c /src | |
parent | cd5048d61e64371ea1f7756cefacd9e731f11002 (diff) | |
download | tor-1bce70a9e3b33d02b2bae4b94a1774db38d19d3a.tar tor-1bce70a9e3b33d02b2bae4b94a1774db38d19d3a.tar.gz |
Make PathsNeededToBuildCircuits option work.
Diffstat (limited to 'src')
-rw-r--r-- | src/or/config.c | 2 | ||||
-rw-r--r-- | src/or/nodelist.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index a238a1ae7..ffa984bcd 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -2485,7 +2485,7 @@ options_validate(or_options_t *old_options, or_options_t *options, log_warn(LD_CONFIG, "PathsNeededToBuildCircuits is too low. Increasing " "to 0.25"); options->PathsNeededToBuildCircuits = 0.25; - } else if (options->PathsNeededToBuildCircuits < 0.95) { + } else if (options->PathsNeededToBuildCircuits > 0.95) { log_warn(LD_CONFIG, "PathsNeededToBuildCircuits is too high. Decreasing " "to 0.95"); options->PathsNeededToBuildCircuits = 0.95; diff --git a/src/or/nodelist.c b/src/or/nodelist.c index 5f3b843d0..178f084b6 100644 --- a/src/or/nodelist.c +++ b/src/or/nodelist.c @@ -1418,7 +1418,7 @@ get_frac_paths_needed_for_circs(const or_options_t *options, const networkstatus_t *ns) { #define DFLT_PCT_USABLE_NEEDED 60 - if (options->PathsNeededToBuildCircuits >= 1.0) { + if (options->PathsNeededToBuildCircuits >= 0.0) { return options->PathsNeededToBuildCircuits; } else { return networkstatus_get_param(ns, "min_paths_for_circs_pct", |