]> git.pond.sub.org Git - empserver/blobdiff - src/lib/update/removewants.c
Update copyright notice
[empserver] / src / lib / update / removewants.c
index ed14c0eedcacb7160c76c4bf2464f0d8aa73c2b1..46cf4564cafe9a86eca37d8ddbeb06c478b1108a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2005, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -19,9 +19,9 @@
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *     
  */
 
-#include <stdio.h>
-#include <ctype.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <errno.h>
-#include "misc.h"
-#include "nat.h"
-#include "file.h"
+#include <config.h>
+
 #include "update.h"
 
 int
@@ -47,12 +41,7 @@ update_removewants(void)
     natid cn;
     struct natstr *natp;
 
-    for (cn = 0; NULL != (natp = getnatp(cn)); cn++) {
-       if ((natp->nat_stat & STAT_INUSE) &&
-           (natp->nat_update & WUPD_WANT) == 0) {
-           natp->nat_missed++;
-       }
-       natp->nat_update = natp->nat_stat & ~WUPD_WANT;
-    }
+    for (cn = 0; NULL != (natp = getnatp(cn)); cn++)
+       natp->nat_update = 0;
     return 0;
 }