The content_type field in partition_data is now set by the system (to the disk system's pretty name).

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4047 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2003-07-22 00:14:01 +00:00
parent 247a3aae82
commit 9cd06f3a38

View File

@ -398,11 +398,11 @@ bfs_scan_partition(int fd, partition_data *partition, void *cookie)
partition->flags |= B_PARTITION_FILE_SYSTEM;
partition->block_size = superBlock->block_size;
partition->content_name = strdup(superBlock->name);
partition->content_type = strdup(kPartitionTypeBFS);
// (content_type is set by the system)
// (no content_parameters, content_cookie ?)
// free the super block
free(superBlock);
if (!partition->content_name || !partition->content_type)
if (!partition->content_name)
return B_NO_MEMORY;
return B_OK;
}