From: Art Cancro Date: Thu, 12 Feb 2015 19:15:14 +0000 (-0500) Subject: Change copyright date in banner to 2015 X-Git-Tag: v9.01~22 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=456e60ae53ade0be1774508810e6c9691fe14251 Change copyright date in banner to 2015 --- diff --git a/citadel/server_main.c b/citadel/server_main.c index 3b1be910d..6a7d293fb 100644 --- a/citadel/server_main.c +++ b/citadel/server_main.c @@ -1,7 +1,7 @@ /* * citserver's main() function lives here. * - * Copyright (c) 1987-2014 by the citadel.org team + * Copyright (c) 1987-2015 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. @@ -154,7 +154,7 @@ int main(int argc, char **argv) syslog(LOG_NOTICE, "*** Citadel server engine v%d.%02d (build %s) ***", (REV_LEVEL/100), (REV_LEVEL%100), svn_revision()); - syslog(LOG_NOTICE, "Copyright (C) 1987-2014 by the Citadel development team."); + syslog(LOG_NOTICE, "Copyright (C) 1987-2015 by the Citadel development team."); syslog(LOG_NOTICE, "This program is distributed under the terms of the GNU " "General Public License."); syslog(LOG_NOTICE, " "); diff --git a/ctdlsalearn/src/main.c b/ctdlsalearn/src/main.c index e8cd282cf..a1d849536 100644 --- a/ctdlsalearn/src/main.c +++ b/ctdlsalearn/src/main.c @@ -116,8 +116,8 @@ int main(int argc, char **argv) if (verbose) printf("%s\n", &buf[4]); if (buf[0] == '2') { - do_room(server_socket, "0000000001.spam", "-u spam --spam"); - do_room(server_socket, "0000000001.ham", "-u spam --ham"); + do_room(server_socket, "0000000001.spam", "--dbpath /home/spam/.spamassassin --spam"); + do_room(server_socket, "0000000001.ham", "--dbpath /home/spam/.spamassassin --ham"); } sock_puts(server_socket, "QUIT"); diff --git a/webcit/webserver.c b/webcit/webserver.c index 2f581356a..0261d696a 100644 --- a/webcit/webserver.c +++ b/webcit/webserver.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996-2014 by the citadel.org team + * Copyright (c) 1996-2015 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. @@ -233,7 +233,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-2014 by the citadel.org team"); + syslog(LOG_NOTICE, "Copyright (C) 1996-2015 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.");