Author: hbelusca Date: Mon Mar 16 00:25:32 2015 New Revision: 66733
URL: http://svn.reactos.org/svn/reactos?rev=66733&view=rev Log: [NTOS]: "system32" --> "System32"
Modified: trunk/reactos/ntoskrnl/io/iomgr/driver.c trunk/reactos/ntoskrnl/kdbg/kdb_cli.c trunk/reactos/ntoskrnl/kdbg/kdb_symbols.cmake.c
Modified: trunk/reactos/ntoskrnl/io/iomgr/driver.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/iomgr/driver.c?... ============================================================================== --- trunk/reactos/ntoskrnl/io/iomgr/driver.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/io/iomgr/driver.c [iso-8859-1] Mon Mar 16 00:25:32 2015 @@ -243,7 +243,7 @@ _In_ PUNICODE_STRING ServiceName) { UNICODE_STRING SystemRootString = RTL_CONSTANT_STRING(L"\SystemRoot\"); - UNICODE_STRING DriversPathString = RTL_CONSTANT_STRING(L"\SystemRoot\system32\drivers\"); + UNICODE_STRING DriversPathString = RTL_CONSTANT_STRING(L"\SystemRoot\System32\drivers\"); UNICODE_STRING DotSysString = RTL_CONSTANT_STRING(L".sys"); UNICODE_STRING InputImagePath;
Modified: trunk/reactos/ntoskrnl/kdbg/kdb_cli.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/kdbg/kdb_cli.c?rev... ============================================================================== --- trunk/reactos/ntoskrnl/kdbg/kdb_cli.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/kdbg/kdb_cli.c [iso-8859-1] Mon Mar 16 00:25:32 2015 @@ -3558,7 +3558,7 @@
/*!\brief Called when KDB is initialized * - * Reads the KDBinit file from the SystemRoot\system32\drivers\etc directory and executes it. + * Reads the KDBinit file from the SystemRoot\System32\drivers\etc directory and executes it. */ VOID KdbpCliInit() @@ -3574,7 +3574,7 @@ ULONG OldEflags;
/* Initialize the object attributes */ - RtlInitUnicodeString(&FileName, L"\SystemRoot\system32\drivers\etc\KDBinit"); + RtlInitUnicodeString(&FileName, L"\SystemRoot\System32\drivers\etc\KDBinit"); InitializeObjectAttributes(&ObjectAttributes, &FileName, 0, NULL, NULL);
/* Open the file */ @@ -3584,7 +3584,7 @@ FILE_NO_INTERMEDIATE_BUFFERING); if (!NT_SUCCESS(Status)) { - DPRINT("Could not open \SystemRoot\system32\drivers\etc\KDBinit (Status 0x%x)", Status); + DPRINT("Could not open \SystemRoot\System32\drivers\etc\KDBinit (Status 0x%x)", Status); return; }
@@ -3594,7 +3594,7 @@ if (!NT_SUCCESS(Status)) { ZwClose(hFile); - DPRINT("Could not query size of \SystemRoot\system32\drivers\etc\KDBinit (Status 0x%x)", Status); + DPRINT("Could not query size of \SystemRoot\System32\drivers\etc\KDBinit (Status 0x%x)", Status); return; } FileSize = FileStdInfo.EndOfFile.u.LowPart;
Modified: trunk/reactos/ntoskrnl/kdbg/kdb_symbols.cmake.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/kdbg/kdb_symbols.c... ============================================================================== --- trunk/reactos/ntoskrnl/kdbg/kdb_symbols.cmake.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/kdbg/kdb_symbols.cmake.c [iso-8859-1] Mon Mar 16 00:25:32 2015 @@ -599,7 +599,7 @@ // HACK: module dll names don't identify the real files UNICODE_STRING SystemRoot; UNICODE_STRING ModuleNameCopy; - RtlInitUnicodeString(&SystemRoot, L"\SystemRoot\system32\Drivers\"); + RtlInitUnicodeString(&SystemRoot, L"\SystemRoot\System32\Drivers\"); ModuleNameCopy.Length = 0; ModuleNameCopy.MaximumLength = LdrEntry->BaseDllName.MaximumLength + SystemRoot.MaximumLength;