mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- Fix broken check for ramdisk boot path... *sigh* please test your patches.
svn path=/trunk/; revision=34209
This commit is contained in:
parent
a65dadb6eb
commit
d9a5d8e476
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue