diff options
Diffstat (limited to 'mbbsd/bbs.c')
-rw-r--r-- | mbbsd/bbs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index 1c7fd538..b98070d5 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -195,8 +195,9 @@ readdoent(int num, fileheader_t * ent) else color = '3', mark = "R:"; - if (title[45]) /* 把多餘的 string 砍掉 */ - strlcpy(title + 42, " …", sizeof(title) - 42); + /* 把多餘的 string 砍掉 */ + if (title[45]) + strlcpy(title + PROPER_TITLE_LEN, " …", sizeof(title) - PROPER_TITLE_LEN); if (!strncmp(title, "[公告]", 6)) special = 1; |