From 716c986c2b967e0268eb0397b7c1805926b991c0 Mon Sep 17 00:00:00 2001 From: piaip Date: Tue, 13 Sep 2005 17:25:49 +0000 Subject: fix r3146: innbbsd used FILE_MULTI which has same value with FILE_BOTTOM. It seems like no reason to set MULTI in received remote articles. git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3166 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- innbbsd/receive_article.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'innbbsd') diff --git a/innbbsd/receive_article.c b/innbbsd/receive_article.c index 33831d18..87726ab1 100644 --- a/innbbsd/receive_article.c +++ b/innbbsd/receive_article.c @@ -785,7 +785,8 @@ post_article(homepath, userid, board, writebody, pathname, firstpath) } strcpy(header.owner, userid); strncpy(header.title, subject, TTLEN); - header.filemode |= FILE_MULTI; + /* no need to apply this... FILE_MULTI is used for mail group reply only now. */ + // header.filemode |= FILE_MULTI; { struct tm *ptime; ptime = localtime(&datevalue); -- cgit v1.2.3