diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-07-23 14:07:32 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-07-23 14:07:32 +0000 |
commit | 15b2b8bd69ff30a85c2364bcc528090b36aa9286 (patch) | |
tree | cde62b5daf0796a6356c9c5f209a9ed8fd845129 /src/or/circuitbuild.c | |
parent | cc46b232485b192d988bc6ef9ffbfcb88e630491 (diff) | |
download | tor-15b2b8bd69ff30a85c2364bcc528090b36aa9286.tar.gz tor-15b2b8bd69ff30a85c2364bcc528090b36aa9286.zip |
r17309@aud-055: nickm | 2008-07-23 16:05:43 +0200
Patch from Christian Wilms: remove (HiddenService|Rend)(Exclude)?Nodes options. They never worked properly, and nobody seems to be using them. Resolves bug 754.
svn:r16144
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 69ace8838e..1b08637e60 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1365,7 +1365,7 @@ choose_good_exit_server(uint8_t purpose, routerlist_t *dir, return choose_good_exit_server_general(dir,need_uptime,need_capacity); case CIRCUIT_PURPOSE_C_ESTABLISH_REND: return router_choose_random_node( - options->RendNodes, options->RendExcludeNodes, NULL, + NULL, NULL, NULL, options->ExcludeNodes, need_uptime, need_capacity, 0, options->_AllowInvalid & ALLOW_INVALID_RENDEZVOUS, 0, 0); } |