diff options
author | Roger Dingledine <arma@torproject.org> | 2006-03-27 02:25:34 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-03-27 02:25:34 +0000 |
commit | 6f08d121d96be29c2ce2d9ef9df4416141651951 (patch) | |
tree | 91c4acf09b72156d35b9bf259c2e5b48b968a14a /src/or/circuitbuild.c | |
parent | 74d35c8027937fe8dac031bf76e31a017d4fa81f (diff) | |
download | tor-6f08d121d96be29c2ce2d9ef9df4416141651951.tar.gz tor-6f08d121d96be29c2ce2d9ef9df4416141651951.zip |
Refactor and consolidate addr/exit policies into a new policies.c.
Fix some minor bugs and memory leaks along the way.
svn:r6246
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index abb4763542..9bc2497ae2 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1079,7 +1079,7 @@ router_handles_some_port(routerinfo_t *router, smartlist_t *needed_ports) addr_policy_result_t r; port = *(uint16_t *)smartlist_get(needed_ports, i); tor_assert(port); - r = router_compare_addr_to_addr_policy(0, port, router->exit_policy); + r = compare_addr_to_addr_policy(0, port, router->exit_policy); if (r != ADDR_POLICY_REJECTED && r != ADDR_POLICY_PROBABLY_REJECTED) return 1; } |