From a04c49f61cef14a745caa31574299ded884daaae Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Tue, 4 Sep 2007 19:41:58 +0000 Subject: [PATCH] - fix a bug svn path=/trunk/; revision=28853 --- reactos/dll/win32/syssetup/wizard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/syssetup/wizard.c b/reactos/dll/win32/syssetup/wizard.c index c83f5031027..4d0db2a4b99 100644 --- a/reactos/dll/win32/syssetup/wizard.c +++ b/reactos/dll/win32/syssetup/wizard.c @@ -2197,9 +2197,9 @@ ProcessUnattendInf(HINF hUnattendedInf) szPath[length] = '\\'; length++; } - strcpy(&szPath[length], "system32\\dbgprint.exe SYSREG_CHECKPOINT:THIRDBOOT_COMPLETE\n"); + strcpy(&szPath[length], "dbgprint.exe SYSREG_CHECKPOINT:THIRDBOOT_COMPLETE\n"); fwrite(szPath, 1, strlen(szPath) + 1, file); - strcpy(&szPath[length], "system32\\shutdown.exe -s"); + strcpy(&szPath[length], "shutdown.exe -s"); fwrite(szPath, 1, strlen(szPath) + 1, file); } fclose(file);