]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/rada.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / lib / commands / rada.c
index 00b3372104b7705957d00332dda7dce01c7da898..d94b002a51b8b69c4767d54993d7f5b6fcea4fd1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2006, 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 <config.h>
+
 #include <ctype.h>
 #include "misc.h"
 #include "player.h"
 #include "xy.h"
-#include "var.h"
 #include "ship.h"
 #include "land.h"
 #include "sect.h"
@@ -95,7 +96,7 @@ rada(void)
                pr("Specify at least one ship\n");
                return RET_SYN;
            }
-           while (nxtitem(&ni, (s_char *)&ship)) {
+           while (nxtitem(&ni, &ship)) {
                if (!player->owner)
                    continue;
                if (mchr[(int)ship.shp_type].m_flags & M_SONAR)
@@ -118,7 +119,7 @@ rada(void)
                pr("Specify at least one unit\n");
                return RET_SYN;
            }
-           while (nxtitem(&ni, (s_char *)&land)) {
+           while (nxtitem(&ni, &land)) {
                if (!player->owner)
                    continue;
                if (!(lchr[(int)land.lnd_type].l_flags & L_RADAR)) {