From 4161e8d4ee1173d6feb01ae7ad6d7aeabb7c93b4 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 3 Dec 2025 15:50:50 -0500 Subject: unalf: do not exit on truncation error (downgrade to a warning). --- src/extract.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/extract.c') diff --git a/src/extract.c b/src/extract.c index 98523db..ff8d780 100644 --- a/src/extract.c +++ b/src/extract.c @@ -161,8 +161,7 @@ void chksum_err(void) { } void truncated_err(void){ - fprintf(stderr, "%s: fatal: compressed data is truncated, EOF before end marker\n", self); - exit(1); + fprintf(stderr, "%s: warning: compressed data is truncated, EOF before end marker\n", self); } void stack_underrun(void){ -- cgit v1.2.3