summaryrefslogtreecommitdiff
path: root/libmailutils/cli/cli.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmailutils/cli/cli.c')
-rw-r--r--libmailutils/cli/cli.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/libmailutils/cli/cli.c b/libmailutils/cli/cli.c
index 948826891..cad717ecd 100644
--- a/libmailutils/cli/cli.c
+++ b/libmailutils/cli/cli.c
@@ -55,10 +55,11 @@ const char mu_version_copyright[] =
/* Do *not* mark this string for translation. %s is a copyright
symbol suitable for this locale, and %d is the copyright
year. */
- "Copyright %s 2007-2019 Free Software Foundation, inc.";
+ "Copyright %s 2007-%d Free Software Foundation, inc.";
+int mu_copyright_year = 2021;
void
-mu_version_hook (struct mu_parseopt *po, mu_stream_t stream)
+mu_version_print (mu_stream_t stream)
{
#if MU_GIT_COMMIT_DISTANCE > 0
mu_stream_printf (stream, "%s (%s) %s-%d [%s]\n",
@@ -72,7 +73,7 @@ mu_version_hook (struct mu_parseopt *po, mu_stream_t stream)
/* TRANSLATORS: Translate "(C)" to the copyright symbol
(C-in-a-circle), if this symbol is available in the user's
locale. Otherwise, do not translate "(C)"; leave it as-is. */
- mu_stream_printf (stream, mu_version_copyright, _("(C)"));
+ mu_stream_printf (stream, mu_version_copyright, _("(C)"), mu_copyright_year);
mu_stream_printf (stream, _("\
\n\
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\nThis is free software: you are free to change and redistribute it.\n\
@@ -81,6 +82,12 @@ There is NO WARRANTY, to the extent permitted by law.\n\
"));
}
+void
+mu_version_hook (struct mu_parseopt *po, mu_stream_t stream)
+{
+ mu_version_print (stream);
+}
+
const char mu_general_help_text[] =
N_("General help using GNU software: <http://www.gnu.org/gethelp/>");

Return to:

Send suggestions and report system problems to the System administrator.