Skip to content
Snippets Groups Projects
Commit 358efe1e authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Merge commit 'origin/maint-0.2.1'

parents 7404c936 925d80ba
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,9 @@ Changes in version 0.2.1.16-?? - 2009-??-??
- Disable some debugging checks that appeared in exit node profile
data.
o Minor features:
- Update to the "June 3 2009" ip-to-country file.
o Minor bugfixes (on 0.2.0.x):
- Log correct error messages for DNS-related network errors on
Windows.
......@@ -43,6 +46,9 @@ Changes in version 0.2.1.16-?? - 2009-??-??
- Fix a race condition that could cause crashes or memory
corruption when running as a server with a controller listening
for log messages.
- Avoid crashing when we have a policy specified in a DirPolicy or
SocksPolicy or ReachableAddresses option with ports set on it, and we
re-load the policy. May fix bug 996.
o Minor bugfixes (on 0.2.1.x):
- When switching back and forth between bridge mode, do not start
......
......@@ -411,6 +411,7 @@ load_policy_from_option(config_line_t *config, smartlist_t **policy,
memcpy(&newp, n, sizeof(newp));
newp.prt_min = 1;
newp.prt_max = 65535;
newp.is_canonical = 0;
c = addr_policy_get_canonical_entry(&newp);
SMARTLIST_REPLACE_CURRENT(*policy, n, c);
addr_policy_free(n);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment