summaryrefslogtreecommitdiffstats
path: root/mbbsd/mail.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-08-06 04:19:49 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-08-06 04:19:49 +0800
commitff24026ce0222c9b0bc78ee075dd0ca9bb50c193 (patch)
tree70f8bffef1edbe949b5aaf83c5dd8717fdb9e87b /mbbsd/mail.c
parent7fe0f796e47c21a8975c956830f0b63f024e35d2 (diff)
downloadpttbbs-ff24026ce0222c9b0bc78ee075dd0ca9bb50c193.tar
pttbbs-ff24026ce0222c9b0bc78ee075dd0ca9bb50c193.tar.gz
pttbbs-ff24026ce0222c9b0bc78ee075dd0ca9bb50c193.tar.bz2
pttbbs-ff24026ce0222c9b0bc78ee075dd0ca9bb50c193.tar.lz
pttbbs-ff24026ce0222c9b0bc78ee075dd0ca9bb50c193.tar.xz
pttbbs-ff24026ce0222c9b0bc78ee075dd0ca9bb50c193.tar.zst
pttbbs-ff24026ce0222c9b0bc78ee075dd0ca9bb50c193.zip
large terminal rules.
- vmsg with formats is now vmsgf. - deprecates vmsg_lines = i hope changes in admin does not make trouble because the old way looks like a mess within my terminal. - pending issue: = pressanykey_or_callangel is in oldway = showtitle, msg_seperator, and others should also be fixed git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2995 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/mail.c')
-rw-r--r--mbbsd/mail.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c
index aa553b42..5e0bf175 100644
--- a/mbbsd/mail.c
+++ b/mbbsd/mail.c
@@ -247,13 +247,13 @@ chkmailbox(void)
case MAILBOX_LIM_KEEP:
bell();
bell();
- vmsg("您保存信件數目 %d 超出上限 %d, 請整理", mailkeep, mailmaxkeep);
+ vmsgf("您保存信件數目 %d 超出上限 %d, 請整理", mailkeep, mailmaxkeep);
return mailkeep;
case MAILBOX_LIM_SUM:
bell();
bell();
- vmsg("信箱容量(大小,非件數) %d 超出上限 %d, "
+ vmsgf("信箱容量(大小,非件數) %d 超出上限 %d, "
"請砍過長的水球記錄或信件", mailsum, mailsumlimit);
if(showmail_mode != SHOWMAIL_SUM)
{
@@ -715,7 +715,7 @@ mail_all(void)
sethomedir(genbuf, userid);
if (append_record_forward(genbuf, &mymail, sizeof(mymail), userid) == -1)
outs(err_uid);
- vmsg("%*s %5d / %5d", IDLEN + 1, userid, i + 1, unum);
+ vmsgf("%*s %5d / %5d", IDLEN + 1, userid, i + 1, unum);
}
}
return 0;