From 3cfb993ce38815e4e022baabc6b2f448277550aa Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Thu, 16 Apr 2015 15:18:11 +1000 Subject: [PATCH] Show correct appname when called in compat mode --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 9286d67..49001b9 100644 --- a/main.c +++ b/main.c @@ -64,7 +64,7 @@ static rzip_control base_control, local_control, *control; static void usage(bool compat) { - print_output("lrzip version %s\n", PACKAGE_VERSION); + print_output("lrz%s version %s\n", compat ? "" : "ip", PACKAGE_VERSION); print_output("Copyright (C) Con Kolivas 2006-2015\n"); print_output("Based on rzip "); print_output("Copyright (C) Andrew Tridgell 1998-2003\n\n");