diff options
author | teor <teor@torproject.org> | 2018-11-07 18:47:42 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-11-14 18:06:05 +1000 |
commit | a7aa3f76ecfceb4f7efaab4bc5744e422735c396 (patch) | |
tree | 807cdd38424a2c769232ccec2faf25bbcc461484 /src/feature | |
parent | c793cf338b92ba2aee0d556a041fefeb2656ee04 (diff) | |
download | tor-a7aa3f76ecfceb4f7efaab4bc5744e422735c396.tar.gz tor-a7aa3f76ecfceb4f7efaab4bc5744e422735c396.zip |
comment: Fix a typo in nodes_in_same_family()
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/nodelist/nodelist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/nodelist/nodelist.c b/src/feature/nodelist/nodelist.c index a98a5c8655..c77ef443d0 100644 --- a/src/feature/nodelist/nodelist.c +++ b/src/feature/nodelist/nodelist.c @@ -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) && |