From c6c54622b219a25cbbd24665c2394056ac33b8b4 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Fri, 14 Nov 2025 17:03:36 -0500 Subject: Exit status 2 for bad checksums, print report with -t. --- src/unalf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unalf.c') diff --git a/src/unalf.c b/src/unalf.c index d4b5aa0..af21aa9 100644 --- a/src/unalf.c +++ b/src/unalf.c @@ -82,5 +82,5 @@ int main(int argc, char **argv) { else extract_alf(); - exit(0); + exit(bad_checksum_count ? 2 : 0); } -- cgit v1.2.3