Skeleton code for filters.
[citadel.git] / webcit-ng / server / main.c
index 03136913182b84fb81c91b19525d77cdc1014f73..e06d70693ae1d09b269c43b40fbd33470aca6772 100644 (file)
@@ -1,9 +1,8 @@
 // Main entry point for the program.
 //
-// Copyright (c) 1996-2022 by the citadel.org team
+// Copyright (c) 1996-2024 by the citadel.org team
 //
-// This program is open source software.  Use, duplication, or
-// disclosure are subject to the GNU General Public License v3.
+// This program is open source software.  Use, duplication, or disclosure is subject to the GNU General Public License v3.
 
 #include "webcit.h"            // All other headers are included from this header.
 
@@ -95,15 +94,10 @@ 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-2022 by the citadel.org team");
+       syslog(LOG_NOTICE, "Copyright (C) 1996-2024 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.");
-       syslog(LOG_NOTICE, " ");
-       syslog(LOG_NOTICE, "This program is distributed in the hope that it will be useful,");
-       syslog(LOG_NOTICE, "but WITHOUT ANY WARRANTY; without even the implied warranty of");
-       syslog(LOG_NOTICE, "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the");
-       syslog(LOG_NOTICE, "GNU General Public License for more details.");
+       syslog(LOG_NOTICE, "This program is open source software.  Use, duplication, or");
+       syslog(LOG_NOTICE, "disclosure is subject to the GNU General Public License v3.");
        syslog(LOG_NOTICE, " ");
 
        // Ensure that we are linked to the correct version of libcitadel