From 285a656662d2a998f6e94a80375e060159dbcaa6 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sun, 29 Nov 2009 15:16:17 -0500 Subject: [PATCH] Failure to decompress a single entry is not a FATAL problem (the entire archive is not dead), it's merely a FAILED problem (this entry is dead, but the rest of the archive may be readable). SVN-Revision: 1679 --- libarchive/archive_read_support_format_iso9660.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libarchive/archive_read_support_format_iso9660.c b/libarchive/archive_read_support_format_iso9660.c index 3d72aff3d..2cdc7c6b3 100644 --- a/libarchive/archive_read_support_format_iso9660.c +++ b/libarchive/archive_read_support_format_iso9660.c @@ -1577,7 +1577,7 @@ zisofs_read_data(struct archive_read *a, (void)offset;/* UNUSED */ archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT, "zisofs is not supported on this platform."); - return (ARCHIVE_FATAL); + return (ARCHIVE_FAILED); } #endif /* HAVE_ZLIB_H */ -- 2.47.3