aboutsummaryrefslogtreecommitdiff
path: root/src/or/router.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/router.c')
-rw-r--r--src/or/router.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/router.c b/src/or/router.c
index d4502c2274..5856988b6d 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -31,7 +31,7 @@ static time_t onionkey_set_at=0; /**< When was onionkey last changed? */
/** Current private onionskin decryption key: used to decode CREATE cells. */
static crypto_pk_env_t *onionkey=NULL;
/** Previous private onionskin decription key: used to decode CREATE cells
- * generated by client that have an older version of our descriptor. */
+ * generated by clients that have an older version of our descriptor. */
static crypto_pk_env_t *lastonionkey=NULL;
/** Private "identity key": used to sign directory info and TLS
* certificates. Never changes. */
@@ -1002,7 +1002,7 @@ check_descriptor_bandwidth_changed(time_t now)
}
/** Note at log level severity that our best guess of address has changed from
- * <b>prev</b> to <b>cur</b> */
+ * <b>prev</b> to <b>cur</b>. */
static void
log_addr_has_changed(int severity, uint32_t prev, uint32_t cur)
{
@@ -1053,7 +1053,7 @@ check_descriptor_ipaddress_changed(time_t now)
}
}
-/** The most recently guessed value of our IP address, from directory
+/** The most recently guessed value of our IP address, based on directory
* headers. */
static uint32_t last_guessed_ip = 0;