mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 12:23:32 +01:00
Make check-spaces happy.
svn:r16406
This commit is contained in:
parent
2a417700b4
commit
d166b9dc45
@ -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
|
||||
|
@ -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)) ?
|
||||
|
Loading…
Reference in New Issue
Block a user