]> git.pond.sub.org Git - empserver/blobdiff - src/lib/update/anno.c
Update copyright notice
[empserver] / src / lib / update / anno.c
index adc765735ccc88c4eda1d372a69fae82fdd1b02d..97ff74858cd39ca415c2e30cafd484870bf3b6bf 100644 (file)
@@ -1,11 +1,11 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
- *                           Ken Stevens, Steve McClure
+ *  Copyright (C) 1986-2015, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *                Ken Stevens, Steve McClure, Markus Armbruster
  *
- *  This program is free software; you can redistribute it and/or modify
+ *  Empire is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation, either version 3 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  *  ---
  *
@@ -31,7 +30,8 @@
  *     Ken Stevens, 1995
  *     Doug Hay, 1998
  *     Steve McClure, 2000
- *     Ron Koenderink, 2004
+ *     Ron Koenderink, 2004-2006
+ *     Markus Armbruster, 2004-2010
  */
 
 #include <config.h>
@@ -44,8 +44,7 @@
 #include "tel.h"
 #include "update.h"
 
-static int copy_and_expire(FILE *annfp, FILE *tmpfp,
-                          char *tmp_filename, time_t expiry_time);
+static int copy_and_expire(FILE *, FILE *, char *, time_t);
 static int copy_sink(char *, size_t, void *);
 
 void
@@ -71,8 +70,7 @@ delete_old_announcements(void)
     }
     sprintf(tmp_filename, "%s.tmp", annfil);
     if ((tmpfp = fopen(tmp_filename, "wb")) == NULL) {
-       logerror("can't open telegram file %s for writing",
-                tmp_filename);
+       logerror("can't open telegram file %s for writing", tmp_filename);
        if (fclose(annfp) != 0)
            logerror("can't close telegram file %s", annfil);
        return;
@@ -84,8 +82,7 @@ delete_old_announcements(void)
        copy_file = 0;
     }
     if (fclose(tmpfp) != 0) {
-       logerror("can't close temporary telegram file %s",
-                tmp_filename);
+       logerror("can't close temporary telegram file %s", tmp_filename);
        copy_file = 0;
     }
 #if defined(_WIN32)