summaryrefslogtreecommitdiffstats
path: root/mbbsd/mbbsd.c
diff options
context:
space:
mode:
authorptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-04-30 02:13:39 +0800
committerptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-04-30 02:13:39 +0800
commit6c783cd8609ba2e65267eaa2cda8c46d7fc4ac8c (patch)
tree8829f8b00e4343f8d8ea97606ce4e58ccb186034 /mbbsd/mbbsd.c
parent4b2f5eeff9950ef1b7dd620d77efffc876aa76fa (diff)
downloadpttbbs-6c783cd8609ba2e65267eaa2cda8c46d7fc4ac8c.tar
pttbbs-6c783cd8609ba2e65267eaa2cda8c46d7fc4ac8c.tar.gz
pttbbs-6c783cd8609ba2e65267eaa2cda8c46d7fc4ac8c.tar.bz2
pttbbs-6c783cd8609ba2e65267eaa2cda8c46d7fc4ac8c.tar.lz
pttbbs-6c783cd8609ba2e65267eaa2cda8c46d7fc4ac8c.tar.xz
pttbbs-6c783cd8609ba2e65267eaa2cda8c46d7fc4ac8c.tar.zst
pttbbs-6c783cd8609ba2e65267eaa2cda8c46d7fc4ac8c.zip
change log_file()
log_user() git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1889 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/mbbsd.c')
-rw-r--r--mbbsd/mbbsd.c20
1 files changed, 3 insertions, 17 deletions
diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c
index 8cef890c..804b2af3 100644
--- a/mbbsd/mbbsd.c
+++ b/mbbsd/mbbsd.c
@@ -98,36 +98,22 @@ reapchild(int sig)
}
void
-log_user(char *msg)
-{
- char filename[200], buf[200];
-
- snprintf(filename, sizeof(filename), BBSHOME "/home/%c/%s/USERLOG",
- cuser.userid[0], cuser.userid);
- snprintf(buf, sizeof(buf), "%s\n", msg);
- log_file(filename, msg, 1);
-}
-
-
-void
log_usies(char *mode, char *mesg)
{
- char genbuf[200];
if (!mesg)
- snprintf(genbuf, sizeof(genbuf),
+ log_file(FN_USIES, 1,
"%s %s %-12s Stay:%d (%s)\n",
Cdate(&now), mode, cuser.userid ,
(int)(now - login_start_time) / 60, cuser.username);
else
- snprintf(genbuf, sizeof(genbuf),
+ log_file(FN_USIES, 1,
"%s %s %-12s %s\n",
Cdate(&now), mode, cuser.userid, mesg);
- log_file(FN_USIES, genbuf, 1);
/* °lÂÜ¨Ï¥ÎªÌ */
if (HAS_PERM(PERM_LOGUSER))
- log_user(genbuf);
+ log_user("logout");
}