summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-10-08 00:33:43 +0000
committerNick Mathewson <nickm@torproject.org>2006-10-08 00:33:43 +0000
commitea00437f7475fee28cb15a3a2d1136a4114a97af (patch)
tree29857b2941d24b5f9c2ed899f0386794b73563c3 /src
parent1c01797c166296c41ca5ebc2b9c64c68df8a4240 (diff)
downloadtor-ea00437f7475fee28cb15a3a2d1136a4114a97af.tar.gz
tor-ea00437f7475fee28cb15a3a2d1136a4114a97af.zip
r8933@totoro: nickm | 2006-10-07 20:33:16 -0400
whitespace fixes; add changelog for last commit. svn:r8644
Diffstat (limited to 'src')
-rw-r--r--src/or/circuitbuild.c3
-rw-r--r--src/or/connection_or.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 7c4501356a..a4cf8a284e 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -95,7 +95,8 @@ get_unique_circ_id_by_conn(or_connection_t *conn)
* the currently built elements of circuit_t. If <b>verbose</b> is true, also
* list information about link status in a more verbose format using spaces.
* If <b>verbose_names</b> is false, give nicknames for Named routers and hex
- * digests for others; if <b>verbose_names</b> is true,
+ * digests for others; if <b>verbose_names</b> is true, use $DIGEST=Name style
+ * names.
*/
static char *
circuit_list_path_impl(origin_circuit_t *circ, int verbose, int verbose_names)
diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index e8681d9a50..0409791562 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -623,7 +623,7 @@ connection_or_check_valid_handshake(or_connection_t *conn, char *digest_rcvd)
"Identity key not as expected for router at %s:%d: wanted %s "
"but got %s",
conn->_base.address, conn->_base.port, expected, seen);
- entry_guard_register_connect_status(conn->identity_digest, 0, time(NULL));
+ entry_guard_register_connect_status(conn->identity_digest,0,time(NULL));
router_set_status(conn->identity_digest, 0);
control_event_or_conn_status(conn, OR_CONN_EVENT_FAILED);
as_advertised = 0;