mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 23:12:56 +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);
|
BusRelations);
|
||||||
|
|
||||||
/* Check if this was a ramdisk boot */
|
/* 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 */
|
/* Initialize the ramdisk driver */
|
||||||
IopStartRamdisk(LoaderBlock);
|
IopStartRamdisk(LoaderBlock);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue