aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarsten Loesing <karsten.loesing@gmx.net>2008-08-04 23:39:07 +0000
committerKarsten Loesing <karsten.loesing@gmx.net>2008-08-04 23:39:07 +0000
commitd166b9dc450fb4da0fee8c2e24172bc9bea933a1 (patch)
tree48a1ed3e69ae3833a1ed9ad07bcaba5935ff833f
parent2a417700b441bc3d13a0d0476179788061addadf (diff)
downloadtor-d166b9dc450fb4da0fee8c2e24172bc9bea933a1.tar.gz
tor-d166b9dc450fb4da0fee8c2e24172bc9bea933a1.zip
Make check-spaces happy.
svn:r16406
-rw-r--r--src/or/circuitbuild.c2
-rw-r--r--src/or/circuitlist.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 8c54209624..eea3075874 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -415,7 +415,7 @@ circuit_n_conn_done(or_connection_t *or_conn, int status)
pending_circs = smartlist_create();
circuit_get_all_pending_on_or_conn(pending_circs, or_conn);
- SMARTLIST_FOREACH_BEGIN (pending_circs, circuit_t *, circ)
+ SMARTLIST_FOREACH_BEGIN(pending_circs, circuit_t *, circ)
{
/* These checks are redundant wrt get_all_pending_on_or_conn, but I'm
* leaving them in in case it's possible for the status of a circuit to
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c
index fc4b74eb28..8fedfca8e0 100644
--- a/src/or/circuitlist.c
+++ b/src/or/circuitlist.c
@@ -576,8 +576,8 @@ circuit_dump_by_conn(connection_t *conn, int severity)
circ->n_hop->addr == conn->addr &&
circ->n_hop->port == conn->port &&
conn->type == CONN_TYPE_OR &&
- !memcmp(TO_OR_CONN(conn)->identity_digest, circ->n_hop->identity_digest,
- DIGEST_LEN)) {
+ !memcmp(TO_OR_CONN(conn)->identity_digest,
+ circ->n_hop->identity_digest, DIGEST_LEN)) {
circuit_dump_details(severity, circ, conn->conn_array_index,
(circ->state == CIRCUIT_STATE_OPEN &&
!CIRCUIT_IS_ORIGIN(circ)) ?