Experiment with dummy AA fields.

Looks good when writing. But when reading there are
problems with the directory size which is not aligned
to 2048.
This commit is contained in:
2009-01-13 14:02:27 +01:00
parent cc9de1507f
commit f7a47baa22
3 changed files with 114 additions and 0 deletions

View File

@ -1235,9 +1235,33 @@ int iso_file_source_new_ifs(IsoImageFilesystem *fs, IsoFileSource *parent,
"than '.' entry of root node");
}
continue;
#ifdef Libisofs_with_aaiP
} else if (SUSP_SIG(sue, 'A', 'A')) {
ret = ISO_SUCCESS;
/* >>> ts A90112
ret = read_susp_AA(sue, &aa, &aacont);
*/
if (ret < 0) {
/* notify and continue */
ret = iso_msg_submit(fsdata->msgid, ISO_WRONG_RR_WARN, ret,
"Invalid NM entry");
}
#endif /* Libisofs_with_aaiP */
} else {
/* ts A90112 : this message is inflationary
ret = iso_msg_submit(fsdata->msgid, ISO_SUSP_UNHANDLED, 0,
"Unhandled SUSP entry %c%c.", sue->sig[0], sue->sig[1]);
*/;
}
}