- Fixed the searching for boot load drivers. This solves the pci driver loading problem.

svn path=/trunk/; revision=9594
This commit is contained in:
Hartmut Birr 2004-06-02 20:30:56 +00:00
parent 26916eed77
commit e0027b1777

View file

@ -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
* PROJECT: ReactOS kernel
@ -444,7 +444,7 @@ IopLoadServiceModule(
for (i = 1; i < KeLoaderBlock.ModsCount; i++)
{
ModuleName = (PCHAR)KeLoaderModules[i].String;
if (!strcmp(ModuleName, SearchName))
if (!_stricmp(ModuleName, SearchName))
{
DPRINT("Initializing boot module\n");