diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2013-04-23 17:53:53 -0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-04-24 22:03:03 -0400 |
commit | ac22bf27d73c51ce6da5afbd2ec29a5403eea2d1 (patch) | |
tree | 53718c61c08693fb25a7a89b490cdd88b69addea /src/or/entrynodes.c | |
parent | c72558f396b35bb42281162198ddbd652f2155fd (diff) | |
download | tor-ac22bf27d73c51ce6da5afbd2ec29a5403eea2d1.tar.gz tor-ac22bf27d73c51ce6da5afbd2ec29a5403eea2d1.zip |
Increase the pathbias state file miscounting version check.
We now know the bug is present in 0.2.4.12-alpha too. It should be fixed in
0.2.4.13-alpha, though.
Diffstat (limited to 'src/or/entrynodes.c')
-rw-r--r-- | src/or/entrynodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c index 3234f4f3c7..7a1f67d16a 100644 --- a/src/or/entrynodes.c +++ b/src/or/entrynodes.c @@ -1215,7 +1215,7 @@ entry_guards_parse_state(or_state_t *state, int set, char **msg) int severity = LOG_INFO; /* If this state file was written by a Tor that would have * already fixed it, then the overcounting bug is still there.. */ - if (tor_version_as_new_as(state_version, "0.2.4.12-alpha")) { + if (tor_version_as_new_as(state_version, "0.2.4.13-alpha")) { severity = LOG_NOTICE; } log_fn(severity, LD_BUG, @@ -1280,7 +1280,7 @@ entry_guards_parse_state(or_state_t *state, int set, char **msg) int severity = LOG_INFO; /* If this state file was written by a Tor that would have * already fixed it, then the overcounting bug is still there.. */ - if (tor_version_as_new_as(state_version, "0.2.4.12-alpha")) { + if (tor_version_as_new_as(state_version, "0.2.4.13-alpha")) { severity = LOG_NOTICE; } log_fn(severity, LD_BUG, |