aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-12-30 04:44:10 +0000
committerRoger Dingledine <arma@torproject.org>2005-12-30 04:44:10 +0000
commitc051e82f6902543412138b44aa97d27540bbaf85 (patch)
treeba848c35ecf18990af10c0400e3cdeb59857e0ed /src
parentfc850273bde46bb825d57b0f5ffc98e6d1b03d00 (diff)
downloadtor-c051e82f6902543412138b44aa97d27540bbaf85.tar
tor-c051e82f6902543412138b44aa97d27540bbaf85.tar.gz
fix a typo
svn:r5680
Diffstat (limited to 'src')
-rw-r--r--src/or/routerlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index f78b74763..427fbf0e3 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -1511,10 +1511,10 @@ router_add_to_routerlist(routerinfo_t *router, const char **msg,
authdir_verified = router->is_verified;
} else if (!from_cache) {
/* Only check the descriptor digest against the network statuses when
- * we are recieving from somewhere other than the cache.*/
+ * we are receiving from somewhere other than the cache. */
if (!signed_desc_digest_is_recognized(&router->cache_info)) {
warn(LD_DIR, "Dropping unrecognized descriptor for router '%s'",
- router->nickname);
+ router->nickname);
routerinfo_free(router);
return -1;
}