diff options
author | David Goulet <dgoulet@torproject.org> | 2020-07-10 10:03:06 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-07-14 10:59:18 -0400 |
commit | 268d01ada5f4a11c5d8e63215288eb593dbfb9ed (patch) | |
tree | ff938bad09c9e1373986a32cb23561736eaba0e2 /src/feature/client | |
parent | 7b24d56accfac9532bc760bca51a64c8462e2ab7 (diff) | |
download | tor-268d01ada5f4a11c5d8e63215288eb593dbfb9ed.tar.gz tor-268d01ada5f4a11c5d8e63215288eb593dbfb9ed.zip |
Rename blacklist and whitelist wording
Closes #40033
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/feature/client')
-rw-r--r-- | src/feature/client/entrynodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/feature/client/entrynodes.c b/src/feature/client/entrynodes.c index 6e8259142d..9b20684bf7 100644 --- a/src/feature/client/entrynodes.c +++ b/src/feature/client/entrynodes.c @@ -1576,12 +1576,12 @@ guard_create_exit_restriction(const uint8_t *exit_id) } /** If we have fewer than this many possible usable guards, don't set - * MD-availability-based restrictions: we might blacklist all of them. */ + * MD-availability-based restrictions: we might denylist all of them. */ #define MIN_GUARDS_FOR_MD_RESTRICTION 10 /** Return true if we should set md dirserver restrictions. We might not want * to set those if our guard options are too restricted, since we don't want - * to blacklist all of them. */ + * to denylist all of them. */ static int should_set_md_dirserver_restriction(void) { |