diff --git a/trunk/src/or/onion.c b/trunk/src/or/onion.c index 123adc6e44..b80734cfb0 100644 --- a/trunk/src/or/onion.c +++ b/trunk/src/or/onion.c @@ -188,6 +188,9 @@ static int new_route_len(double cw, routerinfo_t **rarray, int rarray_len) { #ifdef TOR_PERF routelen = 2; #else + routelen = 3; +#endif +#if 0 for(routelen = 3; ; routelen++) { /* 3, increment until coinflip says we're done */ if (crypto_pseudo_rand_int(255) >= cw*255) /* don't extend */ break;