summaryrefslogtreecommitdiffstats
path: root/mbbsd/mail.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-09-09 21:23:13 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-09-09 21:23:13 +0800
commit4e23baabfaa4661b58dac17128e91d761df18ab3 (patch)
tree178a9c4718bdeebd2758e7ac0cfc5f52dd949380 /mbbsd/mail.c
parent83191c06b40c522464f7021cb25cc2367375f1ce (diff)
downloadpttbbs-4e23baabfaa4661b58dac17128e91d761df18ab3.tar
pttbbs-4e23baabfaa4661b58dac17128e91d761df18ab3.tar.gz
pttbbs-4e23baabfaa4661b58dac17128e91d761df18ab3.tar.bz2
pttbbs-4e23baabfaa4661b58dac17128e91d761df18ab3.tar.lz
pttbbs-4e23baabfaa4661b58dac17128e91d761df18ab3.tar.xz
pttbbs-4e23baabfaa4661b58dac17128e91d761df18ab3.tar.zst
pttbbs-4e23baabfaa4661b58dac17128e91d761df18ab3.zip
try to make FILE_MULTI work, (ref: #221/#220)
hmmm, after almost three thousands of patchsets, finally it may work now ... (hope so, not really tried, and i don't care actually) git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3146 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/mail.c')
-rw-r--r--mbbsd/mail.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c
index e15cfd5c..889c1f48 100644
--- a/mbbsd/mail.c
+++ b/mbbsd/mail.c
@@ -610,7 +610,6 @@ multi_send(char *title)
strlcpy(mymail.owner, cuser.userid, sizeof(mymail.owner));
strlcpy(mymail.title, save_title, sizeof(mymail.title));
- /* TODO is this really going to work!?!?!? */
mymail.filemode |= FILE_MULTI; /* multi-send flag */
sethomedir(genbuf, p->word);
if (append_record_forward(genbuf, &mymail, sizeof(mymail), p->word) == -1)
@@ -627,8 +626,6 @@ multi_send(char *title)
static int
multi_reply(int ent, fileheader_t * fhdr, const char *direct)
{
- /* this is not going to work because FILE_MULTI
- * exceeds filemode data width. */
if (!(fhdr->filemode & FILE_MULTI))
return mail_reply(ent, fhdr, direct);