]> git.pond.sub.org Git - empserver/blobdiff - src/lib/common/mailbox.c
Update copyright notice
[empserver] / src / lib / common / mailbox.c
index 67427260f5388bd422ce4e3e5e22c35fd947cc22..b317a95e18947e08765d960a1ece1ad21cdfe290 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-2009, 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.
  *
  *  ---
  *
  *  mailbox.c: Return string containing telegram file
- * 
+ *
  *  Known contributors to this file:
- *    
+ *
  */
 
-#include "misc.h"
-#include "tel.h"
-#include "optlist.h"
+#include <config.h>
+
 #include <stdio.h>
+#include "optlist.h"
+#include "tel.h"
 
-s_char *
-mailbox(s_char *buf, natid cn)
+char *
+mailbox(char *buf, natid cn)
 {
-    (void)sprintf(buf, "%s%d", telfil, cn);
+    sprintf(buf, "%s/tel%d", teldir, cn);
     return buf;
 }