summaryrefslogtreecommitdiffstats
path: root/mbbsd/talk.c
diff options
context:
space:
mode:
authorkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-06-13 03:35:18 +0800
committerkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-06-13 03:35:18 +0800
commit4e1ad2af155038106cd14a7f5deeee5771b3a531 (patch)
treee813b8f55e370ac55aba06c310c648f7e3531a4e /mbbsd/talk.c
parent2ec15646e35a5a49bea7eff28963c906afc5fc16 (diff)
downloadpttbbs-4e1ad2af155038106cd14a7f5deeee5771b3a531.tar
pttbbs-4e1ad2af155038106cd14a7f5deeee5771b3a531.tar.gz
pttbbs-4e1ad2af155038106cd14a7f5deeee5771b3a531.tar.bz2
pttbbs-4e1ad2af155038106cd14a7f5deeee5771b3a531.tar.lz
pttbbs-4e1ad2af155038106cd14a7f5deeee5771b3a531.tar.xz
pttbbs-4e1ad2af155038106cd14a7f5deeee5771b3a531.tar.zst
pttbbs-4e1ad2af155038106cd14a7f5deeee5771b3a531.zip
* fix bug: incorrect user's tmp buf filename.
* don't test upper case if getdata with LCECHO flag * add some comment * some small code revise git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4585 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/talk.c')
-rw-r--r--mbbsd/talk.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/mbbsd/talk.c b/mbbsd/talk.c
index 130ed593..28873ce5 100644
--- a/mbbsd/talk.c
+++ b/mbbsd/talk.c
@@ -1628,7 +1628,6 @@ my_talk(userinfo_t * uin, int fri_stat, char defact)
genbuf[0] = defact;
ch = uin->mode;
- strlcpy(currauthor, uin->userid, sizeof(currauthor));
if (ch == EDITING || ch == TALK || ch == CHATING || ch == PAGE ||
ch == MAILALL || ch == MONITOR || ch == M_FIVE || ch == CHC ||
@@ -2751,7 +2750,7 @@ userlist(void)
msgque_t msg;
getdata(1, 0, "再次確定站長廣播? [N]",
ans, sizeof(ans), LCECHO);
- if( ans[0] != 'y' && ans[0] != 'Y' ){
+ if( ans[0] != 'y'){
vmsg("abort");
break;
}
@@ -2823,7 +2822,6 @@ userlist(void)
if (HasUserPerm(PERM_ACCOUNTS|PERM_SYSOP)) {
int id;
userec_t muser;
- strlcpy(currauthor, uentp->userid, sizeof(currauthor));
vs_hdr("使用者設定");
move(1, 0);
if ((id = getuser(uentp->userid, &muser)) > 0) {
@@ -2934,7 +2932,6 @@ userlist(void)
break;
case 'q':
- strlcpy(currauthor, uentp->userid, sizeof(currauthor));
my_query(uentp->userid);
setutmpmode(LUSERS);
redrawall = redraw = 1;
@@ -3203,7 +3200,7 @@ t_talk(void)
return 0;
}
-int
+static int
reply_connection_request(const userinfo_t *uip)
{
char buf[4], genbuf[200];