From 6c117974983d0fcfb63319a653bd0628fc651c53 Mon Sep 17 00:00:00 2001 From: Ceri Davies Date: Fri, 23 Feb 2007 21:15:14 +0000 Subject: [PATCH] Use the RB_AUTOBOOT define over 0. Approved by: ru (mentor) --- usr.sbin/sysinstall/system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/sysinstall/system.c b/usr.sbin/sysinstall/system.c index 406877d1a2be..5622f25fcbf0 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