mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
- Fixed the searching for boot load drivers. This solves the pci driver loading problem.
svn path=/trunk/; revision=9594
This commit is contained in:
parent
26916eed77
commit
e0027b1777
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: driver.c,v 1.45 2004/04/12 15:22:53 navaraf Exp $
|
/* $Id: driver.c,v 1.46 2004/06/02 20:30:56 hbirr Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -444,7 +444,7 @@ IopLoadServiceModule(
|
||||||
for (i = 1; i < KeLoaderBlock.ModsCount; i++)
|
for (i = 1; i < KeLoaderBlock.ModsCount; i++)
|
||||||
{
|
{
|
||||||
ModuleName = (PCHAR)KeLoaderModules[i].String;
|
ModuleName = (PCHAR)KeLoaderModules[i].String;
|
||||||
if (!strcmp(ModuleName, SearchName))
|
if (!_stricmp(ModuleName, SearchName))
|
||||||
{
|
{
|
||||||
DPRINT("Initializing boot module\n");
|
DPRINT("Initializing boot module\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue