diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-10-15 03:55:53 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-10-15 03:55:53 +0000 |
commit | ff38cc06e1f7466ed7c6a3524d9817e1c48a0de2 (patch) | |
tree | 555cf50f424c00a397cc2799dec3c331e48e7fdb | |
parent | 2fb08fe46c6de08fa199d6db89991a2f8399a55b (diff) | |
download | tor-ff38cc06e1f7466ed7c6a3524d9817e1c48a0de2.tar.gz tor-ff38cc06e1f7466ed7c6a3524d9817e1c48a0de2.zip |
Fix search-and-replace in comments: Friends->family does not imply friendship->familyhip.
svn:r2525
-rw-r--r-- | src/or/routerlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 850b6383a9..2bdbaf23f8 100644 --- a/src/or/routerlist.c +++ b/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))) |