Remove telfil, use teldir instead.

This commit is contained in:
Markus Armbruster 2008-02-02 09:22:10 +01:00
parent f80af5c7da
commit b58bc70d07
3 changed files with 1 additions and 3 deletions

View file

@ -51,7 +51,6 @@ extern char motdfil[];
extern char downfil[]; extern char downfil[];
extern char annfil[]; extern char annfil[];
extern char teldir[]; extern char teldir[];
extern char telfil[];
enum { enum {
KM_ALLOC = 1, /* memory allocated */ KM_ALLOC = 1, /* memory allocated */

View file

@ -40,6 +40,6 @@
char * char *
mailbox(char *buf, natid cn) mailbox(char *buf, natid cn)
{ {
(void)sprintf(buf, "%s%d", telfil, cn); sprintf(buf, "%s/tel%d", teldir, cn);
return buf; return buf;
} }

View file

@ -67,7 +67,6 @@ char *gamedir = "@gamedir@";
char teldir[] = "tel"; char teldir[] = "tel";
char motdfil[] = "motd"; char motdfil[] = "motd";
char downfil[] = "down"; char downfil[] = "down";
char telfil[] = "tel/tel";
char annfil[] = "ann"; char annfil[] = "ann";
char *listen_addr = ""; char *listen_addr = "";