summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2011-10-14 23:02:45 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2011-10-14 23:02:45 +0800
commitb3b5cde16d5f6f63282f83033e04d538dfb87fc1 (patch)
tree6e7317b74ab4a4c408876d4aba3a1963495e45bf
parentd94ac7be2eaffac528dd46b8755d517bb4876725 (diff)
downloadpttbbs-b3b5cde16d5f6f63282f83033e04d538dfb87fc1.tar
pttbbs-b3b5cde16d5f6f63282f83033e04d538dfb87fc1.tar.gz
pttbbs-b3b5cde16d5f6f63282f83033e04d538dfb87fc1.tar.bz2
pttbbs-b3b5cde16d5f6f63282f83033e04d538dfb87fc1.tar.lz
pttbbs-b3b5cde16d5f6f63282f83033e04d538dfb87fc1.tar.xz
pttbbs-b3b5cde16d5f6f63282f83033e04d538dfb87fc1.tar.zst
pttbbs-b3b5cde16d5f6f63282f83033e04d538dfb87fc1.zip
fix: wrong type in mail
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5432 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/mail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/mail.c b/pttbbs/mbbsd/mail.c
index 865e0c89..f3befd79 100644
--- a/pttbbs/mbbsd/mail.c
+++ b/pttbbs/mbbsd/mail.c
@@ -1146,11 +1146,11 @@ maildoent(int num, fileheader_t * ent)
title = subject_ex(ent->title, &title_type);
switch (title_type) {
- case SUBJECT_REPLY:
+ case SUBJECT_FORWARD:
mark = "ยเ";
color = ANSI_COLOR(1;36);
break;
- case SUBJECT_FORWARD:
+ case SUBJECT_REPLY:
mark = "R:";
color = ANSI_COLOR(1;33);
break;