NTFS: Change pretty name as at other fs-addons

This commit is contained in:
threedeyes 2012-11-03 06:10:36 +00:00
parent 962eb4be43
commit a09a46f8a0
2 changed files with 4 additions and 4 deletions

View File

@ -289,7 +289,7 @@ fs_identify_partition(int fd, partition_data *partition, void **_cookie)
}
size = (double)((10 * diskSize + divisor - 1) / divisor);
snprintf(cookie->label, MAX_PATH - 1, "%g %cB NTFS File System",
snprintf(cookie->label, MAX_PATH - 1, "%g %cB NTFS Volume",
size / 10, unit);
}

View File

@ -168,9 +168,9 @@ static file_system_module_info sNTFSFileSystem = {
ntfs_std_ops,
},
"ntfs", // short_name
"Windows NT File System", // pretty_name
B_DISK_SYSTEM_SUPPORTS_WRITING, // DDM flags
"ntfs", // short_name
"NTFS File System", // pretty_name
B_DISK_SYSTEM_SUPPORTS_WRITING, // DDM flags
// scanning
fs_identify_partition,