From 11dbd69c7ca956876da08fc455d02c650951805b Mon Sep 17 00:00:00 2001 From: Richard Campbell Date: Thu, 20 Mar 2003 19:21:01 +0000 Subject: [PATCH] Changed default shell to cmd.exe svn path=/trunk/; revision=4373 --- reactos/subsys/system/winlogon/winlogon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/system/winlogon/winlogon.c b/reactos/subsys/system/winlogon/winlogon.c index 171e9fe6799..37e1fee8663 100644 --- a/reactos/subsys/system/winlogon/winlogon.c +++ b/reactos/subsys/system/winlogon/winlogon.c @@ -1,4 +1,4 @@ -/* $Id: winlogon.c,v 1.15 2003/02/02 22:38:54 gvg Exp $ +/* $Id: winlogon.c,v 1.16 2003/03/20 19:21:01 rcampbell Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -243,7 +243,7 @@ static PCHAR GetShell(PCHAR CommandLine) if (! GotCommandLine) { GetSystemDirectory(CommandLine, MAX_PATH - 10); - strcat(CommandLine, "\\shell.exe"); + strcat(CommandLine, "\\cmd.exe"); } return CommandLine;