diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-02-17 08:29:22 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-02-17 08:29:22 +0000 |
commit | bd14023afd24abef9f74e7cf6e97cd742a0c7b9e (patch) | |
tree | 53499b3eee246be631696267c9bb7a163e494543 /src/or/router.c | |
parent | d081d1d0611523d71e041f7943e87727616266a5 (diff) | |
download | tor-bd14023afd24abef9f74e7cf6e97cd742a0c7b9e.tar.gz tor-bd14023afd24abef9f74e7cf6e97cd742a0c7b9e.zip |
Propagate yes/no/maybe a little farther forward.
svn:r1096
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index 076d148b77..7fe5e94e11 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -295,7 +295,7 @@ int router_compare_to_my_exit_policy(connection_t *conn) { way we can't get a 'maybe' below. */ return router_compare_addr_to_exit_policy(conn->addr, conn->port, - desc_routerinfo->exit_policy) == ADDR_POLICY_ACCEPTED; + desc_routerinfo->exit_policy); } |