[or-cvs] r16406: Make check-spaces happy. (tor/trunk/src/or)

kloesing at seul.org kloesing at seul.org
Mon Aug 4 23:39:07 UTC 2008


Author: kloesing
Date: 2008-08-04 19:39:07 -0400 (Mon, 04 Aug 2008)
New Revision: 16406

Modified:
   tor/trunk/src/or/circuitbuild.c
   tor/trunk/src/or/circuitlist.c
Log:
Make check-spaces happy.

Modified: tor/trunk/src/or/circuitbuild.c
===================================================================
--- tor/trunk/src/or/circuitbuild.c	2008-08-04 23:38:32 UTC (rev 16405)
+++ tor/trunk/src/or/circuitbuild.c	2008-08-04 23:39:07 UTC (rev 16406)
@@ -415,7 +415,7 @@
   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

Modified: tor/trunk/src/or/circuitlist.c
===================================================================
--- tor/trunk/src/or/circuitlist.c	2008-08-04 23:38:32 UTC (rev 16405)
+++ tor/trunk/src/or/circuitlist.c	2008-08-04 23:39:07 UTC (rev 16406)
@@ -576,8 +576,8 @@
         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)) ?



More information about the tor-commits mailing list