]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
comment: Fix a typo in nodes_in_same_family()
authorteor <teor@torproject.org>
Wed, 7 Nov 2018 08:47:42 +0000 (18:47 +1000)
committerteor <teor@torproject.org>
Wed, 14 Nov 2018 08:06:05 +0000 (18:06 +1000)
src/feature/nodelist/nodelist.c

index a98a5c8655c1365d0cf5a0fb12945f504f478e1d..c77ef443d069e2414a1027bf2d1cf179352fd766 100644 (file)
@@ -1932,7 +1932,7 @@ nodes_in_same_family(const node_t *node1, const node_t *node2)
       return 1;
   }
 
-  /* Are they in the same option because the user says they are? */
+  /* Are they in the same family because the user says they are? */
   if (options->NodeFamilySets) {
     SMARTLIST_FOREACH(options->NodeFamilySets, const routerset_t *, rs, {
         if (routerset_contains_node(rs, node1) &&