From: Roger Dingledine Date: Sat, 31 Dec 2005 06:37:34 +0000 (+0000) Subject: get rid of the special case for 'testing' circuits X-Git-Tag: tor-0.1.1.11-alpha~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a11b97b15484051fc41f0090cf2d79aba82a6c6;p=thirdparty%2Ftor.git get rid of the special case for 'testing' circuits svn:r5684 --- diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 10bd72c240..32eb87892c 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1494,8 +1494,7 @@ choose_good_entry_server(uint8_t purpose, cpath_build_state_t *state) smartlist_t *excluded = smartlist_create(); or_options_t *options = get_options(); - if (state && options->UseEntryNodes && - purpose != CIRCUIT_PURPOSE_TESTING) { + if (state && options->UseEntryNodes) { return choose_random_entry(state); }