- DiskUsageCounter.cc - ignore "vfat", "fat", "ntfs" and "ntfs-3g"
authorLadislav Slezak <lslezak@suse.cz>
Tue, 26 Feb 2008 13:00:12 +0000 (13:00 +0000)
committerLadislav Slezak <lslezak@suse.cz>
Tue, 26 Feb 2008 13:00:12 +0000 (13:00 +0000)
  file systems (#333166)
- rev. 8915

package/libzypp.changes
zypp/DiskUsageCounter.cc

index c190047..b5d2b8a 100644 (file)
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Tue Feb 26 13:59:03 CET 2008 - lslezak@suse.cz
+
+- DiskUsageCounter.cc - ignore "vfat", "fat", "ntfs" and "ntfs-3g"
+  file systems (#333166)
+- rev. 8915
+
+-------------------------------------------------------------------
 Tue Feb 26 13:26:30 CET 2008 - ma@suse.de
  
 - Fixed Capabilites iterator exposing prereq marker.
index 2e15214..8dc06d0 100644 (file)
@@ -201,6 +201,12 @@ namespace zypp
              continue;
            }
 
+           if ( words[2] == "vfat" || words[2] == "fat" || words[2] == "ntfs" || words[2] == "ntfs-3g")
+           {
+             MIL << words[1] << " contains ignored fs (" << words[2] << ')' << std::endl;
+             continue;
+           }
+
            //
            // Filter some common unwanted mountpoints
            //