summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2020-07-14 16:34:20 +0200
committerJulian Andres Klode <julian.klode@canonical.com>2020-08-04 12:12:11 +0200
commit7d8bb855487d6821b0cd6bf5d2270ed8fda3d1a3 (patch)
treef465a732a27bc9caf57002de8ce00dee695f74ca /apt-pkg
parent9cb5a81168307e15f209173ad9286835bff2df65 (diff)
Replace whitelist/blacklist with allowlist/denylist
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/contrib/strutl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc
index 972472986..bd4856526 100644
--- a/apt-pkg/contrib/strutl.cc
+++ b/apt-pkg/contrib/strutl.cc
@@ -1771,7 +1771,7 @@ URI::operator string()
{
// FIXME: Technically userinfo is permitted even less
// characters than these, but this is not conveniently
- // expressed with a blacklist.
+ // expressed with a denylist.
Res << QuoteString(User, ":/?#[]@");
if (Password.empty() == false)
Res << ":" << QuoteString(Password, ":/?#[]@");