From 2f6387f3fae162ce84db9f18a442fa6e6816ff12 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Wed, 17 Apr 2019 20:44:39 +0200 Subject: [PATCH] Set correct year in copyright display Fixes https://github.com/boothj5/profanity/issues/1069 --- src/ui/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/console.c b/src/ui/console.c index 812a918470..f4ba7eba4d 100644 --- a/src/ui/console.c +++ b/src/ui/console.c @@ -412,7 +412,7 @@ cons_about(void) } } - win_println(console, THEME_DEFAULT, '-', "Copyright (C) 2012 - 2018 James Booth <%s>.", PACKAGE_BUGREPORT); + win_println(console, THEME_DEFAULT, '-', "Copyright (C) 2012 - 2019 James Booth <%s>.", PACKAGE_BUGREPORT); win_println(console, THEME_DEFAULT, '-', "License GPLv3+: GNU GPL version 3 or later "); win_println(console, THEME_DEFAULT, '-', ""); win_println(console, THEME_DEFAULT, '-', "This is free software; you are free to change and redistribute it.");