Use blocklist where blacklist was used and allowlist
where whitelist was used.

Signed-off-by: Stephen Hemminger <step...@networkplumber.org>
---
 devtools/check-maintainers.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/devtools/check-maintainers.sh b/devtools/check-maintainers.sh
index 85a300f0a029..edb452b55833 100755
--- a/devtools/check-maintainers.sh
+++ b/devtools/check-maintainers.sh
@@ -42,10 +42,10 @@ parse_fx () # <index file>
        for line in $( (sed '/^-\+$/d' $1 ; echo) | sed 's,^$,§,') ; do
                if echo "$line" | grep -q '^§$' ; then
                        # 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 "
                                maintainers=$(echo "$maintainers" | sed -r 
's,.*<(.*)>.*,\1,')
                                maintainers=$(printf "$maintainers" | sed -e 
's,^,<,' -e 's,$,>,')
-- 
2.26.2

Reply via email to