From 12996778d4af52d0818bc469d531ff5911666117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Tue, 20 Jan 2004 23:40:19 +0000 Subject: [PATCH] Reboot instead of shutdown at the end of 2nd stage setup. svn path=/trunk/; revision=7800 --- reactos/subsys/system/winlogon/winlogon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/subsys/system/winlogon/winlogon.c b/reactos/subsys/system/winlogon/winlogon.c index 3a6b2475f0c..56a38935946 100644 --- a/reactos/subsys/system/winlogon/winlogon.c +++ b/reactos/subsys/system/winlogon/winlogon.c @@ -1,4 +1,4 @@ -/* $Id: winlogon.c,v 1.25 2004/01/14 23:21:31 gvg Exp $ +/* $Id: winlogon.c,v 1.26 2004/01/20 23:40:19 gvg Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -493,8 +493,8 @@ WinMain(HINSTANCE hInstance, /* Run setup and reboot when done */ RunSetup (); -// NtShutdownSystem (ShutdownReboot); - NtShutdownSystem (ShutdownNoReboot); + NtShutdownSystem (ShutdownReboot); +// NtShutdownSystem (ShutdownNoReboot); ExitProcess (0); return 0; }