From e0027b1777f142b3b996092aeae1bfb9e8f29766 Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Wed, 2 Jun 2004 20:30:56 +0000 Subject: [PATCH] - Fixed the searching for boot load drivers. This solves the pci driver loading problem. svn path=/trunk/; revision=9594 --- reactos/ntoskrnl/io/driver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/io/driver.c b/reactos/ntoskrnl/io/driver.c index 2fb3553c359..f6b89bc0fab 100644 --- a/reactos/ntoskrnl/io/driver.c +++ b/reactos/ntoskrnl/io/driver.c @@ -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");