From 15bef05179033377906d5a9c37485f66a9de07df Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Thu, 28 Jul 2022 21:32:00 +0200 Subject: [PATCH] Only print version on '--version' --- src/options.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/options.c b/src/options.c index 7d52028..ebbdc17 100644 --- a/src/options.c +++ b/src/options.c @@ -422,11 +422,6 @@ void options_parse(int argc, char *argv[]) case 'v': printf("tio v%s\n", VERSION); - printf("Copyright (c) 2014-2022 Martin Lund\n"); - printf("\n"); - printf("License GPLv2+: GNU GPL version 2 or later .\n"); - printf("This is free software: you are free to change and redistribute it.\n"); - printf("There is NO WARRANTY, to the extent permitted by law.\n"); exit(EXIT_SUCCESS); break;