Author: pschweitzer
Date: Sat Oct 17 23:08:52 2015
New Revision: 69580
URL:
http://svn.reactos.org/svn/reactos?rev=69580&view=rev
Log:
[AUTOCHK]
Register the ExtX provider to avoid the autochk error message on boot when an ExtX volume
is present
CORE-10272
Modified:
trunk/reactos/base/system/autochk/autochk.c
Modified: trunk/reactos/base/system/autochk/autochk.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/autochk/autoch…
==============================================================================
--- trunk/reactos/base/system/autochk/autochk.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/autochk/autochk.c [iso-8859-1] Sat Oct 17 23:08:52 2015
@@ -264,6 +264,12 @@
{
RtlInitUnicodeString(&ProviderDll, L"ufat.dll");
}
+ else if (wcscmp(FileSystem, L"EXT2") == 0
+ || wcscmp(FileSystem, L"EXT3") == 0
+ || wcscmp(FileSystem, L"EXT4") == 0)
+ {
+ RtlInitUnicodeString(&ProviderDll, L"uext2.dll");
+ }
else
{
return NULL;