diff options
author | Julian Andres Klode <jak@debian.org> | 2020-08-04 10:12:30 +0000 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2020-08-04 10:12:30 +0000 |
commit | 11530bab64efd4b4fc46de7833533cea9c69f521 (patch) | |
tree | c80fac24e28f09547334660ba6cc717bc5156c99 /apt-private/private-update.cc | |
parent | 1afe7c8b874abb61cde591e0241b967ef1b99991 (diff) | |
parent | 7d8bb855487d6821b0cd6bf5d2270ed8fda3d1a3 (diff) |
Merge branch 'pu/less-slaves' into 'master'
Remove master/slave terminology
See merge request apt-team/apt!124
Diffstat (limited to 'apt-private/private-update.cc')
-rw-r--r-- | apt-private/private-update.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-private/private-update.cc b/apt-private/private-update.cc index 248f1f36e..affae655d 100644 --- a/apt-private/private-update.cc +++ b/apt-private/private-update.cc @@ -110,7 +110,7 @@ bool DoUpdate(CommandLine &CmdL) if (uri.User.empty() && uri.Password.empty()) continue; // we can't really predict if a +http method supports everything http does, - // so we play it safe and use a whitelist here. + // so we play it safe and use an allowlist here. char const *const affected[] = {"http", "https", "tor+http", "tor+https", "ftp"}; if (std::find(std::begin(affected), std::end(affected), uri.Access) != std::end(affected)) // TRANSLATOR: the first two are manpage references, the last the URI from a sources.list |