remove no-longer-needed check for strsep()

This commit is contained in:
Evan Hunt 2018-06-28 09:03:02 -07:00
parent 9dfaf03b31
commit 9f38be5064

View file

@ -25,20 +25,6 @@ list=`git grep -l snprintf lib bin |
echo "$list"
}
#
# Check for missing #include <isc/string.h>"
#
list=`git grep -lw strsep lib bin |
grep '\.c$' |
grep -vE -e '(lib/bind|lib/dns/rdata|lib/dns/gen.c)' \
-e '(lib/isc/win32/time.c)' |
xargs grep -L "<isc/string.h>"`
[ -n "$list" ] && {
status=1
echo 'Missing #include <isc/string.h>:'
echo "$list"
}
#
# Check for missing #include <inttypes.h>"
#