diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-09-06 21:38:14 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-09-06 21:38:14 +0800 |
commit | e2a6b4b4502bd8926777c9b17747e65528422464 (patch) | |
tree | 13e3da9497952ea312802beab4a4ae0ccd32abbb /mbbsd/talk.c | |
parent | 2eb5731c5011ca46377f4301965c15cf7750b49a (diff) | |
download | pttbbs-e2a6b4b4502bd8926777c9b17747e65528422464.tar pttbbs-e2a6b4b4502bd8926777c9b17747e65528422464.tar.gz pttbbs-e2a6b4b4502bd8926777c9b17747e65528422464.tar.bz2 pttbbs-e2a6b4b4502bd8926777c9b17747e65528422464.tar.lz pttbbs-e2a6b4b4502bd8926777c9b17747e65528422464.tar.xz pttbbs-e2a6b4b4502bd8926777c9b17747e65528422464.tar.zst pttbbs-e2a6b4b4502bd8926777c9b17747e65528422464.zip |
* refine message with quantity
git-svn-id: http://opensvn.csie.org/pttbbs/branches/pttbbs.pwcu@4813 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/talk.c')
-rw-r--r-- | mbbsd/talk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/talk.c b/mbbsd/talk.c index 2ed5b5c8..b11799c5 100644 --- a/mbbsd/talk.c +++ b/mbbsd/talk.c @@ -471,7 +471,7 @@ my_query(const char *uident) // ------------------------------------------------------------ - prints("《" STR_LOGINDAYS "》%d ", muser.numlogindays); + prints("《" STR_LOGINDAYS "》%d " STR_LOGINDAYS_QTY, muser.numlogindays); #ifdef SHOW_LOGINOK if (!(muser.userlevel & PERM_LOGINOK)) outs(" (尚未通過認證)"); @@ -3307,7 +3307,7 @@ talkreply(void) strlcpy(currutmp->msgs[0].last_call_in, "呼叫、呼叫,聽到請回答 (Ctrl-R)", sizeof(currutmp->msgs[0].last_call_in)); currutmp->msgs[0].msgmode = MSGMODE_TALK; - prints("對方來自 [%s]," STR_LOGINDAYS " %d ,文章共 %d 篇\n", + prints("對方來自 [%s]," STR_LOGINDAYS " %d " STR_LOGINDAYS_QTY ",文章共 %d 篇\n", uip->from, xuser.numlogindays, xuser.numposts); if (is_chess) |