Browse Source

Fix search-and-replace in comments: Friends->family does not imply friendship->familyhip.

svn:r2525
Nick Mathewson 21 years ago
parent
commit
ff38cc06e1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/or/routerlist.c

+ 2 - 2
src/or/routerlist.c

@@ -233,8 +233,8 @@ void routerlist_add_family(smartlist_t *sl, routerinfo_t *router) {
   if (!router->declared_family)
     return;
   
-  /* Add every r such that router declares familyhip with r, and r
-   * declares familyhip with router. */
+  /* Add every r such that router declares familyness with r, and r
+   * declares familyhood with router. */
   SMARTLIST_FOREACH(router->declared_family, const char *, n,
     {
       if (!(r = router_get_by_nickname(n)))