]> git.pond.sub.org Git - empserver/blobdiff - src/lib/update/removewants.c
Fix trailing whitespace
[empserver] / src / lib / update / removewants.c
index eecd4dcb3602e7a72cef618532b231dd849f2203..f4283768bfccb471a58558c7b585353f9012cf44 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2007, 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
@@ -26,9 +26,9 @@
  *  ---
  *
  *  removewants.c: Remove the "I want an update" flag.
- * 
+ *
  *  Known contributors to this file:
- *     
+ *
  */
 
 #include <config.h>
@@ -41,10 +41,7 @@ update_removewants(void)
     natid cn;
     struct natstr *natp;
 
-    for (cn = 0; NULL != (natp = getnatp(cn)); cn++) {
-       if (natp->nat_stat != STAT_UNUSED && !natp->nat_update)
-           natp->nat_missed++;
+    for (cn = 0; NULL != (natp = getnatp(cn)); cn++)
        natp->nat_update = 0;
-    }
     return 0;
 }