diff options
author | Roger Dingledine <arma@torproject.org> | 2010-08-09 18:50:49 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2010-08-09 18:50:49 -0400 |
commit | 0087a37bed508d8240d4b51d1f2112bfae3f4d03 (patch) | |
tree | 125de05c4a0b3304cdf40914839a60fc47e59804 /src/or/circuituse.c | |
parent | f060b18e6c4292be58de0e1b08f25b770cbddff8 (diff) | |
download | tor-0087a37bed508d8240d4b51d1f2112bfae3f4d03.tar.gz tor-0087a37bed508d8240d4b51d1f2112bfae3f4d03.zip |
tiny changes i found in my sandbox
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 63742da307..4503e1d817 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -719,7 +719,7 @@ circuit_expire_old_circuits_clientside(time_t now) } for (circ = global_circuitlist; circ; circ = circ->next) { - if (circ->marked_for_close || ! CIRCUIT_IS_ORIGIN(circ)) + if (circ->marked_for_close || !CIRCUIT_IS_ORIGIN(circ)) continue; /* If the circuit has been dirty for too long, and there are no streams * on it, mark it for close. |