From 0a835e13bfab831426fafb751c1413041f5324ca Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Mon, 31 Aug 2020 16:14:23 +1000 Subject: Simplify the --version output, old dates are confusing people Drop the copyright notice from the version output as a number of people seem to be confused by what this means, and we can do without all the (well intentioned) bug reports. --- htop.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'htop.c') diff --git a/htop.c b/htop.c index 7cdf4e42..bdaeb844 100644 --- a/htop.c +++ b/htop.c @@ -29,14 +29,12 @@ in the source distribution for its full text. //#link m static void printVersionFlag() { - fputs("htop " VERSION " - " COPYRIGHT "\n" - "Released under the GNU GPL.\n\n", - stdout); + fputs("htop " VERSION "\n", stdout); exit(0); } static void printHelpFlag() { - fputs("htop " VERSION " - " COPYRIGHT "\n" + fputs("htop " VERSION "\n" "Released under the GNU GPL.\n\n" "-C --no-color Use a monochrome color scheme\n" "-m --no-mouse Disable the mouse\n" -- cgit v1.2.3