From: Andre Noll Date: Mon, 21 Apr 2014 04:39:52 +0000 (+0000) Subject: version.c: Fix year in version_text(). X-Git-Tag: v0.5.3~26 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=eb98705eed9978052f090b20684eeba935c5a913;ds=sidebyside version.c: Fix year in version_text(). We want a single year here. The string got converted to a range by mistake in commit 027f2c12. --- diff --git a/version.c b/version.c index 8526bbcc..3a190e63 100644 --- a/version.c +++ b/version.c @@ -57,7 +57,7 @@ const char *version_text(const char *pfx) static char buf[512]; snprintf(buf, sizeof(buf) - 1, "%s\n" - "Copyright (C) 2013-2014 Andre Noll\n" + "Copyright (C) 2014 Andre Noll\n" "This is free software with ABSOLUTELY NO WARRANTY." " See COPYING for details.\n" "Report bugs to .\n"