tools/tapsetup: fix typo in function name

This commit is contained in:
Alexandre Abadie 2020-08-28 13:33:27 +02:00
parent 7eed33bf78
commit 15222cf5e9
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -28,7 +28,7 @@ usage() {
echo " -h, --help: Prints this text" >&2 echo " -h, --help: Prints this text" >&2
} }
unsupported_plattform() { unsupported_platform() {
echo "unsupported platform" >&2 echo "unsupported platform" >&2
echo "(currently supported \`uname -s\` 'Darvin', 'FreeBSD', and 'Linux')" >&2 echo "(currently supported \`uname -s\` 'Darvin', 'FreeBSD', and 'Linux')" >&2
} }
@ -234,7 +234,7 @@ case "$(uname -s)" in
Linux) Linux)
PLATFORM="Linux" ;; PLATFORM="Linux" ;;
*) *)
unsupported_plattform unsupported_platform
exit 1 ;; exit 1 ;;
esac esac