From a8b35c56a38d84a5bc10d6a84fb1bae948129d74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Wed, 27 Jul 2016 20:33:07 +0100 Subject: [PATCH] Fix btrfs support. --- src/plugins/libparted/libpartedbackend.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/libparted/libpartedbackend.cpp b/src/plugins/libparted/libpartedbackend.cpp index 8412ce5..0c9155f 100644 --- a/src/plugins/libparted/libpartedbackend.cpp +++ b/src/plugins/libparted/libpartedbackend.cpp @@ -382,6 +382,7 @@ FileSystem::Type LibPartedBackend::detectFileSystem(const QString& deviceNode) else if (s == QStringLiteral("ufs")) rval = FileSystem::Ufs; else if (s == QStringLiteral("fat16")) rval = FileSystem::Fat16; else if (s == QStringLiteral("fat32")) rval = FileSystem::Fat32; + else if (s == QStringLiteral("btrfs")) rval = FileSystem::Btrfs; else if (s == QStringLiteral("ocfs2")) rval = FileSystem::Ocfs2; else if (s == QStringLiteral("zfs_member")) rval = FileSystem::Zfs; else if (s == QStringLiteral("hpfs")) rval = FileSystem::Hpfs;