devtools: rename variables in maintainers file parsing
authorStephen Hemminger <stephen@networkplumber.org>
Thu, 6 Aug 2020 17:19:47 +0000 (10:19 -0700)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 7 Aug 2020 11:02:11 +0000 (13:02 +0200)
Change variable names in the shell script.
Replace whitelist with include_files and blacklist with exclude_files.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Luca Boccassi <bluca@debian.org>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: John McNamara <john.mcnamara@intel.com>
devtools/check-maintainers.sh

index 85a300f..df3f740 100755 (executable)
@@ -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
+                       include_files=$(files $flines)
+                       exclude_files=$(files $xlines)
+                       match=$(aminusb "$include_files" "$exclude_files")
+                       if [ -n "$include_files" ] ; then
                                printf "# $title "
                                maintainers=$(echo "$maintainers" | sed -r 's,.*<(.*)>.*,\1,')
                                maintainers=$(printf "$maintainers" | sed -e 's,^,<,' -e 's,$,>,')