summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall
diff options
context:
space:
mode:
authorceri <ceri@FreeBSD.org>2007-02-23 21:15:14 +0000
committerceri <ceri@FreeBSD.org>2007-02-23 21:15:14 +0000
commit768807b57d20377e0a941786e4cc67156d76f448 (patch)
tree9b6182014948c6c560752ec362077030ea46bd77 /usr.sbin/sysinstall
parent994824acc1488ea72efda1251ee087245098bc04 (diff)
downloadFreeBSD-src-768807b57d20377e0a941786e4cc67156d76f448.zip
FreeBSD-src-768807b57d20377e0a941786e4cc67156d76f448.tar.gz
Use the RB_AUTOBOOT define over 0.
Approved by: ru (mentor)
Diffstat (limited to 'usr.sbin/sysinstall')
-rw-r--r--usr.sbin/sysinstall/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/system.c b/usr.sbin/sysinstall/system.c
index 406877d..5622f25 100644
--- a/usr.sbin/sysinstall/system.c
+++ b/usr.sbin/sysinstall/system.c
@@ -263,7 +263,7 @@ systemShutdown(int status)
#if defined(__alpha__) || defined(__sparc64__)
reboot(RB_HALT);
#else
- reboot(0);
+ reboot(RB_AUTOBOOT);
#endif
}
else
OpenPOWER on IntegriCloud