summaryrefslogtreecommitdiffstats
path: root/mbbsd/mail.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-12-11 14:16:49 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-12-11 14:16:49 +0800
commit5c3bb0ce3bcbd99430b25b4d7ecfb474d4814947 (patch)
tree3b43100a6e3353744bf56a1e3497fdd53105ff18 /mbbsd/mail.c
parent0c0ea6ce3de183926f174cf6622601bcfe2ccfd8 (diff)
downloadpttbbs-5c3bb0ce3bcbd99430b25b4d7ecfb474d4814947.tar
pttbbs-5c3bb0ce3bcbd99430b25b4d7ecfb474d4814947.tar.gz
pttbbs-5c3bb0ce3bcbd99430b25b4d7ecfb474d4814947.tar.bz2
pttbbs-5c3bb0ce3bcbd99430b25b4d7ecfb474d4814947.tar.lz
pttbbs-5c3bb0ce3bcbd99430b25b4d7ecfb474d4814947.tar.xz
pttbbs-5c3bb0ce3bcbd99430b25b4d7ecfb474d4814947.tar.zst
pttbbs-5c3bb0ce3bcbd99430b25b4d7ecfb474d4814947.zip
- change hard coded .DIR to macro definitions
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3667 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/mail.c')
-rw-r--r--mbbsd/mail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c
index b7485c65..6c5e5efc 100644
--- a/mbbsd/mail.c
+++ b/mbbsd/mail.c
@@ -1834,7 +1834,7 @@ bsmtp(const char *fpath, const char *title, const char *rcpt)
strlcpy(mqueue.username, cuser.nickname, sizeof(mqueue.username));
strlcpy(mqueue.rcpt, rcpt, sizeof(mqueue.rcpt));
- if (append_record("out/.DIR", (fileheader_t *) & mqueue, sizeof(mqueue)) < 0)
+ if (append_record("out/" FN_DIR, (fileheader_t *) & mqueue, sizeof(mqueue)) < 0)
return 0;
return chrono;
}