]> git.pond.sub.org Git - empserver/blobdiff - src/lib/update/removewants.c
Update copyright notice
[empserver] / src / lib / update / removewants.c
index 0f7f5f91fcb4bcb4b029ac42fa3af0ddc2da5965..46cf4564cafe9a86eca37d8ddbeb06c478b1108a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2000, 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
 update_removewants(void)
 {
-       natid   cn;
-       struct natstr *natp;
+    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;
-       }
-       return 0;
+    for (cn = 0; NULL != (natp = getnatp(cn)); cn++)
+       natp->nat_update = 0;
+    return 0;
 }