summaryrefslogtreecommitdiff
path: root/parted/ui.c
diff options
context:
space:
mode:
Diffstat (limited to 'parted/ui.c')
-rw-r--r--parted/ui.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/parted/ui.c b/parted/ui.c
index 7b2a248..f50536c 100644
--- a/parted/ui.c
+++ b/parted/ui.c
@@ -1347,6 +1347,7 @@ static int
init_fs_type_str ()
{
PedFileSystemType* walk;
+ PedFileSystemAlias* alias_walk;
fs_type_list = NULL;
@@ -1357,6 +1358,14 @@ init_fs_type_str ()
if (!fs_type_list)
return 0;
}
+ for (alias_walk = ped_file_system_alias_get_next (NULL); alias_walk;
+ alias_walk = ped_file_system_alias_get_next (alias_walk))
+ {
+ fs_type_list = str_list_insert (fs_type_list,
+ alias_walk->alias);
+ if (!fs_type_list)
+ return 0;
+ }
return 1;
}