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

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