Warn users when hidden El-Torito boot images are found.

This commit is contained in:
Vreixo Formoso
2008-02-09 20:02:57 +01:00
parent 9a70496d3c
commit fe4976497b
4 changed files with 12 additions and 0 deletions

View File

@ -2344,6 +2344,12 @@ int iso_image_import(IsoImage *image, IsoDataSource *src,
goto import_revert;
}
image->bootcat->image->image = (IsoFile*)node;
/* warn about hidden images */
iso_msg_submit(image->id, ISO_EL_TORITO_HIDDEN, 0,
"Found hidden El-Torito image. Its size could not "
"be figure out, so image modify or boot image "
"patching may lead to bad results.");
}
if (image->bootcat->node == NULL) {
IsoNode *node = calloc(1, sizeof(IsoBoot));