From ad4191475a228a5db2d150597bb15a1f59d9284c Mon Sep 17 00:00:00 2001 From: Mike Fleetwood Date: Fri, 29 Jan 2016 11:17:46 +0000 Subject: [PATCH] Rename file system from "crypt-luks" to "luks" (#760080) The name of the format is Linux Unified Key Setup, or just LUKS. https://en.wikipedia.org/wiki/Linux_Unified_Key_Setup Bug 760080 - Implement read-only LUKS support --- src/Utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils.cc b/src/Utils.cc index 55cbbf88..8a022766 100644 --- a/src/Utils.cc +++ b/src/Utils.cc @@ -284,7 +284,7 @@ Glib::ustring Utils::get_filesystem_string( FILESYSTEM filesystem ) case FS_UNUSED : return _("unused") ; case FS_LVM2_PV : return "lvm2 pv" ; case FS_BITLOCKER : return "bitlocker" ; - case FS_LUKS : return "crypt-luks" ; + case FS_LUKS : return "luks"; case FS_LINUX_SWRAID : return "linux-raid" ; case FS_LINUX_SWSUSPEND : return "linux-suspend" ; case FS_REFS : return "refs" ;