]> code.delx.au - refind/commitdiff
Minor refinement to FAT over-detection bug.
authorsrs5694 <srs5694@users.sourceforge.net>
Wed, 4 Feb 2015 02:15:11 +0000 (21:15 -0500)
committersrs5694 <srs5694@users.sourceforge.net>
Wed, 4 Feb 2015 02:15:11 +0000 (21:15 -0500)
refind/lib.c
refind/main.c

index 4b7c970d42f6049994ca017d5d692f211064cb65..c6c5e3113ee24db96d6734720f40ecd88e8ed6a7 100644 (file)
@@ -972,7 +972,8 @@ VOID ScanVolume(REFIT_VOLUME *Volume)
 
    if (Volume->RootDir == NULL) {
       Volume->IsReadable = FALSE;
-      Volume->FSType = FS_TYPE_UNKNOWN;
+      if (Volume->FSType != FS_TYPE_NTFS)
+          Volume->FSType = FS_TYPE_UNKNOWN;
       return;
    } else {
       Volume->IsReadable = TRUE;
index 835082608e03874190f2ffd78f81f97aea1ba2e7..5805685ae9ce2ca7f2a59ee57359472e49955f00 100644 (file)
@@ -166,7 +166,7 @@ static VOID AboutrEFInd(VOID)
 
     if (AboutMenu.EntryCount == 0) {
         AboutMenu.TitleImage = BuiltinIcon(BUILTIN_ICON_FUNC_ABOUT);
-        AddMenuInfoLine(&AboutMenu, L"rEFInd Version 0.8.5.4");
+        AddMenuInfoLine(&AboutMenu, L"rEFInd Version 0.8.5.5");
         AddMenuInfoLine(&AboutMenu, L"");
         AddMenuInfoLine(&AboutMenu, L"Copyright (c) 2006-2010 Christoph Pfisterer");
         AddMenuInfoLine(&AboutMenu, L"Copyright (c) 2012-2015 Roderick W. Smith");