diff options
author | Michael Vetter <jubalh@iodoru.org> | 2019-04-17 20:44:39 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2019-04-17 20:44:39 +0200 |
commit | 2f6387f3fae162ce84db9f18a442fa6e6816ff12 (patch) | |
tree | 0d42da019364f3d04fe12c2546f6f8ce0635d2b2 | |
parent | 4403e667a719c4a301d20979994d863be1183721 (diff) | |
download | profani-tty-2f6387f3fae162ce84db9f18a442fa6e6816ff12.tar.gz |
Set correct year in copyright display
Fixes https://github.com/boothj5/profanity/issues/1069
-rw-r--r-- | src/ui/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/console.c b/src/ui/console.c index 812a9184..f4ba7eba 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 <https://www.gnu.org/licenses/gpl.html>"); win_println(console, THEME_DEFAULT, '-', ""); win_println(console, THEME_DEFAULT, '-', "This is free software; you are free to change and redistribute it."); |