- Fix broken check for ramdisk boot path... *sigh* please test your patches.

svn path=/trunk/; revision=34209
This commit is contained in:
ReactOS Portable Systems Group 2008-06-30 07:06:48 +00:00
parent a65dadb6eb
commit d9a5d8e476

View file

@ -514,7 +514,7 @@ IoInitSystem(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
BusRelations);
/* Check if this was a ramdisk boot */
if (RtlEqualMemory(LoaderBlock->ArcBootDeviceName, "ramdisk(0)", 10))
if (!_strnicmp(LoaderBlock->ArcBootDeviceName, "ramdisk(0)", 10))
{
/* Initialize the ramdisk driver */
IopStartRamdisk(LoaderBlock);