]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/repa.c
Fix trailing whitespace
[empserver] / src / lib / commands / repa.c
index ae5cf6304f03217e454aef372237dba43f197637..77a473467404d2d0df1a5b09c1559071b46feba3 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
  *
  *  ---
  *
- *  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.
  *
  *  ---
  *
  *  repa.c: repay loan from a country
- * 
+ *
  *  Known contributors to this file:
- *     
+ *
  */
 
+#include <config.h>
+
 #include <math.h>
-#include "misc.h"
-#include "player.h"
-#include "nat.h"
+#include "commands.h"
 #include "loan.h"
 #include "news.h"
-#include "file.h"
-#include "commands.h"
 #include "optlist.h"
 
 int
@@ -107,8 +105,9 @@ repa(void)
        loan.l_amtpaid += payment;
     }
     if (!putloan(loan_num, &loan)) {
+       logerror("repa: can't write loan");
        pr("Can't save loan; get help!\n");
-       return RET_SYS;
+       return RET_FAIL;
     }
     return RET_OK;
 }