[tools/bgpscanner] Fix chknospc()

This commit is contained in:
Lorenzo Cogotti 2021-08-10 14:01:49 +02:00
parent cc036e7608
commit 91431d94b1
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ chkprefix() {
}
chknospc() {
case "$1" in
''|*[![:space:]]*) die "'$1': Invalid argument";;
''|*[[:space:]]*) die "'$1': Invalid argument";;
*) ;;
esac
}