Browse Source

Make check-spaces happy.

svn:r16406
Karsten Loesing 16 years ago
parent
commit
d166b9dc45
2 changed files with 3 additions and 3 deletions
  1. 1 1
      src/or/circuitbuild.c
  2. 2 2
      src/or/circuitlist.c

+ 1 - 1
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

+ 2 - 2
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)) ?