backport r12658

svn:r12659
This commit is contained in:
Roger Dingledine 2007-12-03 22:47:18 +00:00
parent 47f011cac8
commit 1acfe321f8
2 changed files with 5 additions and 2 deletions

View File

@ -8,11 +8,14 @@ Changes in version 0.1.2.19 - 2007-??-??
o Major bugfixes:
- When the clock jumps forward a lot, do not allow the bandwidth
buckets to become negative. Fixes Bug 544.
buckets to become negative. Fixes bug 544.
- Fix a memory leak on exit relays; we were leaking a cached_resolve_t
on every successful resolve. Reported by Mike Perry.
- Purge old entries from the "rephist" database and the hidden
service descriptor database even when DirPort is zero.
- Stop thinking that 0.1.2.x directory servers can handle "begin_dir"
requests. Should ease bugs 406 and 419 where 0.1.2.x relays are
crashing or mis-answering these requests.
o Minor bugfixes:
- Changing the ExitPolicyRejectPrivate setting should cause us to

View File

@ -1133,7 +1133,7 @@ routerstatus_parse_entry_from_string(const char **s, smartlist_t *tokens)
rs->version_supports_begindir = 1;
} else {
rs->version_supports_begindir =
tor_version_as_new_as(tok->args[0], "0.1.2.2-alpha");
tor_version_as_new_as(tok->args[0], "0.2.0.1-alpha");
}
}