From: Roger Dingledine Date: Wed, 18 Aug 2004 07:53:43 +0000 (+0000) Subject: bugfix: make intro circuits work again X-Git-Tag: tor-0.0.8rc1~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d661d1bc04755cb13b49a9587dc68b528cacfff;p=thirdparty%2Ftor.git bugfix: make intro circuits work again svn:r2280 --- diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 2d081d387c..9d7f617763 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -321,6 +321,8 @@ routerinfo_t *router_choose_random_node(char *preferred, char *excluded, routerlist_sl_remove_unreliable_routers(sl); if(preferbandwidth) choice = routerlist_sl_choose_by_bandwidth(sl); + else + choice = smartlist_choose(sl); smartlist_free(sl); } smartlist_free(excludednodes);