[AUTOCHK]
authorPierre Schweitzer <pierre@reactos.org>
Sat, 17 Oct 2015 23:08:52 +0000 (23:08 +0000)
committerPierre Schweitzer <pierre@reactos.org>
Sat, 17 Oct 2015 23:08:52 +0000 (23:08 +0000)
Register the ExtX provider to avoid the autochk error message on boot when an ExtX volume is present

CORE-10272

svn path=/trunk/; revision=69580

reactos/base/system/autochk/autochk.c

index d1cd6a4..4fa58ce 100644 (file)
@@ -264,6 +264,12 @@ LoadProvider(
     {
       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;