diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-12-04 18:14:07 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-12-04 18:14:07 +0800 |
commit | 51a1858e75305e33c87ea12e1dd9a39040c0cca8 (patch) | |
tree | 42d9345b881f315e4fa6720faac7d44936022d15 | |
parent | 4cf706eefce88b66f76f142a079bc5cd4d463626 (diff) | |
download | pttbbs-51a1858e75305e33c87ea12e1dd9a39040c0cca8.tar pttbbs-51a1858e75305e33c87ea12e1dd9a39040c0cca8.tar.gz pttbbs-51a1858e75305e33c87ea12e1dd9a39040c0cca8.tar.bz2 pttbbs-51a1858e75305e33c87ea12e1dd9a39040c0cca8.tar.lz pttbbs-51a1858e75305e33c87ea12e1dd9a39040c0cca8.tar.xz pttbbs-51a1858e75305e33c87ea12e1dd9a39040c0cca8.tar.zst pttbbs-51a1858e75305e33c87ea12e1dd9a39040c0cca8.zip |
fix bug
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@581 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/talk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/talk.c b/pttbbs/mbbsd/talk.c index 76c1276f..af88bc01 100644 --- a/pttbbs/mbbsd/talk.c +++ b/pttbbs/mbbsd/talk.c @@ -1,4 +1,4 @@ -/* $Id: talk.c,v 1.95 2002/11/16 13:41:07 kcwu Exp $ */ +/* $Id: talk.c,v 1.96 2002/12/04 10:14:07 in2 Exp $ */ #include "bbs.h" #define QCAST int (*)(const void *, const void *) @@ -669,7 +669,7 @@ my_write(pid_t pid, char *prompt, char *id, int flag, userinfo_t * puin) strlcpy(uin->msgs[uin->msgcount].userid, cuser.userid, sizeof(uin->msgs[uin->msgcount].userid)); strlcpy(uin->msgs[uin->msgcount++].last_call_in, msg, - sizeof(uin->msgs[uin->msgcount++].last_call_in)); + sizeof(uin->msgs[uin->msgcount].last_call_in)); uin->pager = pager0; } else if (flag != 2) outmsg("\033[1;33;41m糟糕! 對方不行了! (收到太多水球) \033[37m@_@\033[m"); |