Make check-spaces happy.

svn:r16406
This commit is contained in:
Karsten Loesing 2008-08-04 23:39:07 +00:00
parent 2a417700b4
commit d166b9dc45
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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)) ?