From: Art Cancro Date: Wed, 1 Jan 2020 20:34:18 +0000 (-0500) Subject: Shamlessly slapped a 2020 copyright date on all startup banners. X-Git-Tag: v939~254 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=6d051cee6f669b6ecd950e933a95644f3cf097ea Shamlessly slapped a 2020 copyright date on all startup banners. --- diff --git a/citadel/server_main.c b/citadel/server_main.c index 8e3a8d254..68af7888e 100644 --- a/citadel/server_main.c +++ b/citadel/server_main.c @@ -1,7 +1,7 @@ /* * citserver's main() function lives here. * - * Copyright (c) 1987-2019 by the citadel.org team + * Copyright (c) 1987-2020 by the citadel.org team * * This program is open source software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3. @@ -213,7 +213,7 @@ int main(int argc, char **argv) syslog(LOG_INFO, " "); syslog(LOG_INFO, "*** Citadel server engine ***\n"); syslog(LOG_INFO, "Version %d (build %s) ***", REV_LEVEL, svn_revision()); - syslog(LOG_INFO, "Copyright (C) 1987-2019 by the Citadel development team."); + syslog(LOG_INFO, "Copyright (C) 1987-2020 by the Citadel development team."); syslog(LOG_INFO, " "); syslog(LOG_INFO, "This program is open source software: you can redistribute it and/or"); syslog(LOG_INFO, "modify it under the terms of the GNU General Public License, version 3."); diff --git a/ctdlsh/main.c b/ctdlsh/main.c index daa356833..93265244e 100644 --- a/ctdlsh/main.c +++ b/ctdlsh/main.c @@ -1,5 +1,5 @@ /* - * (c) 2009-2019 by Art Cancro and citadel.org + * (c) 2009-2020 by Art Cancro and citadel.org * This program is open source. It runs great on the Linux operating system. * It's released under the General Public License (GPL) version 3. */ @@ -143,7 +143,7 @@ int main(int argc, char **argv) int is_interactive = ((strlen(cmd) == 0) ? 1 : 0); if (is_interactive) { - printf("\nCitadel administration shell (c) 2009-2019 by citadel.org\n" + printf("\nCitadel administration shell (c) 2009-2020 by citadel.org\n" "This is open source software made available to you under the terms\n" "of the GNU General Public License v3. All other rights reserved.\n"); printf("Connecting to Citadel server in %s...\n", ctdldir); diff --git a/webcit-ng/main.c b/webcit-ng/main.c index 9e2483cc4..cc9cc24b8 100644 --- a/webcit-ng/main.c +++ b/webcit-ng/main.c @@ -1,7 +1,7 @@ /* * Main entry point for the program. * - * Copyright (c) 1996-2019 by the citadel.org team + * Copyright (c) 1996-2020 by the citadel.org team * * This program is open source software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3. @@ -104,7 +104,7 @@ int main(int argc, char **argv) /* Tell 'em who's in da house */ syslog(LOG_NOTICE, "MAKE WEBCIT GREAT AGAIN!"); - syslog(LOG_NOTICE, "Copyright (C) 1996-2019 by the citadel.org team"); + syslog(LOG_NOTICE, "Copyright (C) 1996-2020 by the citadel.org team"); syslog(LOG_NOTICE, " "); syslog(LOG_NOTICE, "This program is open source software: you can redistribute it and/or"); syslog(LOG_NOTICE, "modify it under the terms of the GNU General Public License, version 3."); diff --git a/webcit/webserver.c b/webcit/webserver.c index e814364d1..24fd56021 100644 --- a/webcit/webserver.c +++ b/webcit/webserver.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996-2019 by the citadel.org team + * Copyright (c) 1996-2020 by the citadel.org team * * This program is open source software. You can redistribute it and/or * modify it under the terms of the GNU General Public License version 3. @@ -234,7 +234,7 @@ int main(int argc, char **argv) /* Tell 'em who's in da house */ syslog(LOG_NOTICE, "%s", PACKAGE_STRING); - syslog(LOG_NOTICE, "Copyright (C) 1996-2019 by the citadel.org team"); + syslog(LOG_NOTICE, "Copyright (C) 1996-2020 by the citadel.org team"); syslog(LOG_NOTICE, " "); syslog(LOG_NOTICE, "This program is open source software: you can redistribute it and/or"); syslog(LOG_NOTICE, "modify it under the terms of the GNU General Public License, version 3.");