diff options
author | Alkorin <github@alkorin.fr> | 2018-01-09 18:44:15 +0100 |
---|---|---|
committer | Alkorin <github@alkorin.fr> | 2018-01-09 18:44:15 +0100 |
commit | 335439dee00f60594c59d2dfb7da8a7cb475b946 (patch) | |
tree | fb7b13ac71e9a3acc118736ddb9c9f53a347b529 | |
parent | 1c3d349667b6da8aa07595bd6f66906da15d6d2b (diff) | |
download | spectre-meltdown-checker-335439dee00f60594c59d2dfb7da8a7cb475b946.tar.lz spectre-meltdown-checker-335439dee00f60594c59d2dfb7da8a7cb475b946.tar.xz spectre-meltdown-checker-335439dee00f60594c59d2dfb7da8a7cb475b946.zip |
Fix small typo in error message
-rwxr-xr-x | spectre-meltdown-checker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spectre-meltdown-checker.sh b/spectre-meltdown-checker.sh index 2a9a874..aac9024 100755 --- a/spectre-meltdown-checker.sh +++ b/spectre-meltdown-checker.sh @@ -399,7 +399,7 @@ if [ -e "$opt_kernel" ]; then extract_vmlinux "$opt_kernel" fi else - vmlinux_err="couldn't find your kernel image in /boot, if you used neboot, this is normal" + vmlinux_err="couldn't find your kernel image in /boot, if you used netboot, this is normal" fi if [ -z "$vmlinux" -o ! -r "$vmlinux" ]; then [ -z "$vmlinux_err" ] && vmlinux_err="couldn't extract your kernel from $opt_kernel" |