diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-12-03 03:36:32 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-12-03 03:36:32 +0000 |
commit | 979fc3e69de58e57313e9ed10148e96101d77838 (patch) | |
tree | 04a525bf2500d121d2eab5fecb3253580e372d65 /src | |
parent | 77a494dd551c67f2234c1a32f7739961987d8edc (diff) | |
download | tor-979fc3e69de58e57313e9ed10148e96101d77838.tar tor-979fc3e69de58e57313e9ed10148e96101d77838.tar.gz |
cvs diff -u src/or/circuitlist.c | less almost never does what you want in C.
svn:r5491
Diffstat (limited to 'src')
-rw-r--r-- | src/or/circuitlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 0793d11a5..ba58c71d2 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -825,7 +825,7 @@ assert_circuit_ok(const circuit_t *c) tor_assert(circuits_pending_or_conns && smartlist_isin(circuits_pending_or_conns, c)); } else { - tor_assert(!circuits_pending_or_conns || ! + tor_assert(!circuits_pending_or_conns || !smartlist_isin(circuits_pending_or_conns, c)); } if (c->cpath) { |