From: Roger Dingledine Date: Fri, 30 Dec 2005 04:44:10 +0000 (+0000) Subject: fix a typo X-Git-Tag: tor-0.1.1.11-alpha~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c051e82f6902543412138b44aa97d27540bbaf85;p=thirdparty%2Ftor.git fix a typo svn:r5680 --- diff --git a/src/or/routerlist.c b/src/or/routerlist.c index f78b747637..427fbf0e3f 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; }