aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-11-01 01:30:25 +0000
committerNick Mathewson <nickm@torproject.org>2006-11-01 01:30:25 +0000
commit31e274ddd35087431f44bd3b202fc284c7ae0702 (patch)
treea79b705bddb92cb748a3becc31f308c19092e121 /src
parent9e13a6f31c144fc6ca06d8eceac0d91522c57274 (diff)
downloadtor-31e274ddd35087431f44bd3b202fc284c7ae0702.tar
tor-31e274ddd35087431f44bd3b202fc284c7ae0702.tar.gz
r9461@Kushana: nickm | 2006-10-31 20:30:12 -0500
Oops. Fix compile error in last build. svn:r8888
Diffstat (limited to 'src')
-rw-r--r--src/or/circuitlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c
index 0104886d4..76c3ce8f3 100644
--- a/src/or/circuitlist.c
+++ b/src/or/circuitlist.c
@@ -849,7 +849,7 @@ _circuit_mark_for_close(circuit_t *circ, int reason, int line,
reason = END_CIRC_REASON_NONE;
}
- if (reason & END_CIRC_REASON_FLAG_REMOTE) {
+ if (reason & END_CIRC_REASON_FLAG_REMOTE)
reason &= ~END_CIRC_REASON_FLAG_REMOTE;
if (reason < _END_CIRC_REASON_MIN || reason > _END_CIRC_REASON_MAX) {