diff options
author | scottl <scottl@FreeBSD.org> | 2003-10-28 17:18:42 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2003-10-28 17:18:42 +0000 |
commit | 208696733a419f6f2b87aa24339e64bfd62d276e (patch) | |
tree | a5f4667d180daaa6c860575441a2330c56e87f6b /sys | |
parent | 8ff2243783b2952157d3fdebff61c57256b6295e (diff) | |
download | FreeBSD-src-208696733a419f6f2b87aa24339e64bfd62d276e.zip FreeBSD-src-208696733a419f6f2b87aa24339e64bfd62d276e.tar.gz |
Directly call the 'reboot' word instead of indirectly evaluating it.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/boot/forth/beastie.4th | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/forth/beastie.4th b/sys/boot/forth/beastie.4th index 90aeeec..76578c3 100644 --- a/sys/boot/forth/beastie.4th +++ b/sys/boot/forth/beastie.4th @@ -248,7 +248,7 @@ set-current s" NO" s" autoboot_delay" setenv exit then - rebootkey @ = if s" reboot" evaluate then + rebootkey @ = if 0 reboot then repeat ; |