Add type field to IsoFilesystem. Minor documentation.

This commit is contained in:
Vreixo Formoso
2008-01-19 17:17:50 +01:00
parent 0c1ea8cc7e
commit 0e87bf8792
6 changed files with 63 additions and 8 deletions

View File

@ -629,6 +629,7 @@ int iso_local_filesystem_new(IsoFilesystem **fs)
}
/* fill struct */
strncpy(lfs->type, "file", 4);
lfs->refcount = 1;
lfs->data = NULL; /* we don't need private data */
lfs->get_root = lfs_get_root;