13/06/2020 02:00, Stephen Hemminger: > Use blocklist where blacklist was used and allowlist > where whitelist was used.
This is a mechanical, not accurate, replacement. > Signed-off-by: Stephen Hemminger <step...@networkplumber.org> > Acked-by: Luca Boccassi <bl...@debian.org> > --- > --- a/devtools/check-maintainers.sh > +++ b/devtools/check-maintainers.sh > # empty line delimit end of section > - whitelist=$(files $flines) > - blacklist=$(files $xlines) > - match=$(aminusb "$whitelist" "$blacklist") > - if [ -n "$whitelist" ] ; then > + allowlist=$(files $flines) > + blocklist=$(files $xlines) > + match=$(aminusb "$allowlist" "$blocklist") > + if [ -n "$allowlist" ] ; then > printf "# $title " It is listing files with exclusions. The concept allow/block does not match here. I would prefer "files" and "xfiles" as variable names.