From 64c809527e2221dd6181152804ffdb2abf8898a0 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Fri, 23 Aug 2019 09:40:54 +0200 Subject: [PATCH] Use fixed email instead of PACKAGE_BUGREPORT --- src/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index e7259b7b..aa01bc44 100644 --- a/src/main.c +++ b/src/main.c @@ -103,7 +103,8 @@ main(int argc, char **argv) g_print("Profanity, version %s\n", PACKAGE_VERSION); } - g_print("Copyright (C) 2012 - 2019 James Booth <%s>.\n", PACKAGE_BUGREPORT); + // lets use fixed email instead of PACKAGE_BUGREPORT + g_print("Copyright (C) 2012 - 2019 James Booth .\n"); g_print("Copyright (C) 2019 Michael Vetter .\n"); g_print("License GPLv3+: GNU GPL version 3 or later \n"); g_print("\n");