[ros-diffs] [ros-arm-bringup] 34209: - Fix broken check for ramdisk boot path... *sigh* please test your patches.
ros-arm-bringup at svn.reactos.org
ros-arm-bringup at svn.reactos.org
Mon Jun 30 09:06:48 CEST 2008
Author: ros-arm-bringup
Date: Mon Jun 30 02:06:48 2008
New Revision: 34209
URL: http://svn.reactos.org/svn/reactos?rev=34209&view=rev
Log:
- Fix broken check for ramdisk boot path... *sigh* please test your patches.
Modified:
trunk/reactos/ntoskrnl/io/iomgr/iomgr.c
Modified: trunk/reactos/ntoskrnl/io/iomgr/iomgr.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/iomgr/iomgr.c?rev=34209&r1=34208&r2=34209&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/io/iomgr/iomgr.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/io/iomgr/iomgr.c [iso-8859-1] Mon Jun 30 02:06:48 2008
@@ -514,7 +514,7 @@
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);
More information about the Ros-diffs
mailing list