Return blocksize for ISO9660 filesystem

This commit is contained in:
Christophe Grenier 2012-08-12 20:29:39 +02:00
parent b3c3f5255c
commit 824c7217cf

View file

@ -76,7 +76,8 @@ static int set_ISO_info(const struct iso_primary_descriptor *iso, partition_t *p
if(volume_space_size==volume_space_size2 && logical_block_size==logical_block_size2)
{
partition->blocksize=logical_block_size;
snprintf(partition->info, sizeof(partition->info), "ISO9660");
snprintf(partition->info, sizeof(partition->info),
"ISO9660 blocksize=%u", partition->blocksize);
}
else
snprintf(partition->info, sizeof(partition->info), "ISO");