Mar 24 08:43:30.014 [debug] circuit_find_to_cannibalize(): Hunting for

a circ to cannibalize: purpose 5, uptime 0, capacity 4, internal 0


svn:r14166
This commit is contained in:
Roger Dingledine 2008-03-24 18:43:01 +00:00
parent 901e2ad04b
commit 9047361007

View file

@ -814,9 +814,9 @@ circuit_find_to_cannibalize(uint8_t purpose, extend_info_t *info,
circuit_t *_circ;
origin_circuit_t *best=NULL;
int need_uptime = flags & CIRCLAUNCH_NEED_UPTIME;
int need_capacity = flags & CIRCLAUNCH_NEED_CAPACITY;
int internal = flags & CIRCLAUNCH_IS_INTERNAL;
int need_uptime = (flags & CIRCLAUNCH_NEED_UPTIME) != 0;
int need_capacity = (flags & CIRCLAUNCH_NEED_CAPACITY) != 0;
int internal = (flags & CIRCLAUNCH_IS_INTERNAL) != 0;
log_debug(LD_CIRC,
"Hunting for a circ to cannibalize: purpose %d, uptime %d, "