From dfe0a77f5d7a3847ab5475065516a6dc7755f61f Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 1 Dec 2025 08:07:42 -0500 Subject: Show original filename with alf -v. --- src/alf.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/alf.c b/src/alf.c index 1c6814b..ece8570 100644 --- a/src/alf.c +++ b/src/alf.c @@ -187,7 +187,11 @@ void crunch_file(const char *filename) { memset(output_buf, 0, sizeof(output_buf)); create_header(); - printf("Crunching %s", hdr_filename); + if(opt_verbose) { + printf("Crunching %s as %s", filename, hdr_filename); + } else { + printf("Crunching %s", hdr_filename); + } fflush(stdout); if(!opt_verbose) putchar('\n'); -- cgit v1.2.3