diff options
author | Chelsea H. Komlo <chelsea.komlo@gmail.com> | 2016-11-28 13:00:38 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-01-08 13:14:56 -0500 |
commit | 655ffeadd53833d96a25a70261b31c60d6f0ac6d (patch) | |
tree | c45e9c37e079903962ed7496a0098998c47347e0 /src/or/main.c | |
parent | f4ebbf756787d49a3ccfaaad0fffba5fc9fa4915 (diff) | |
download | tor-655ffeadd53833d96a25a70261b31c60d6f0ac6d.tar.gz tor-655ffeadd53833d96a25a70261b31c60d6f0ac6d.zip |
comment fixups
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/or/main.c b/src/or/main.c index 0d4da65764..24b209ce8a 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -486,7 +486,7 @@ connection_check_event(connection_t *conn, struct event *ev) */ bad = ev != NULL; } else { - /* Everytyhing else should have an underlying socket, or a linked + /* Everything else should have an underlying socket, or a linked * connection (which is also tracked with a read_event/write_event pair). */ bad = ev == NULL; @@ -1656,8 +1656,7 @@ static int check_expired_networkstatus_callback(time_t now, const or_options_t *options) { (void)options; - /* 1f. Check whether our networkstatus has expired. - */ + /* Check whether our networkstatus has expired. */ networkstatus_t *ns = networkstatus_get_latest_consensus(); /*XXXX RD: This value needs to be the same as REASONABLY_LIVE_TIME in * networkstatus_get_reasonably_live_consensus(), but that value is way @@ -1769,7 +1768,7 @@ clean_caches_callback(time_t now, const or_options_t *options) /** * Periodic callback: Clean the cache of failed hidden service lookups - * frequently frequently. + * frequently. */ static int rend_cache_failure_clean_callback(time_t now, const or_options_t *options) |