From d39b220c77f98bf9c9f3022f3f07b4aaf4fab2ba Mon Sep 17 00:00:00 2001 From: "Daniel C. Sobral" Date: Fri, 8 Sep 2000 16:58:31 +0000 Subject: [PATCH] Fix an error message which was using the wrong variable to get the kernel name from. --- sys/boot/forth/support.4th | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/boot/forth/support.4th b/sys/boot/forth/support.4th index 0095ffc9eb5..814e5220f0c 100644 --- a/sys/boot/forth/support.4th +++ b/sys/boot/forth/support.4th @@ -1226,7 +1226,7 @@ variable current_conf_files : load_kernel ( -- ) ( throws: abort ) s" load ${kernel} ${kernel_options}" ['] evaluate catch - if s" echo Unable to load kernel: ${kernel_name}" evaluate abort then + if s" echo Unable to load kernel: ${kernel}" evaluate abort then ; : read-password { size | buf len -- }