summaryrefslogtreecommitdiffstats
path: root/mbbsd/mbbsd.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-01-31 13:30:33 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-01-31 13:30:33 +0800
commit3727016a2521ae1fa3f80296100df3294bbc90ce (patch)
treeec50445866392e7e0dcee86af6175f1a4bef13c0 /mbbsd/mbbsd.c
parent718716ca8b2651626439d8a4d0c5b52f7d388130 (diff)
downloadpttbbs-3727016a2521ae1fa3f80296100df3294bbc90ce.tar
pttbbs-3727016a2521ae1fa3f80296100df3294bbc90ce.tar.gz
pttbbs-3727016a2521ae1fa3f80296100df3294bbc90ce.tar.bz2
pttbbs-3727016a2521ae1fa3f80296100df3294bbc90ce.tar.lz
pttbbs-3727016a2521ae1fa3f80296100df3294bbc90ce.tar.xz
pttbbs-3727016a2521ae1fa3f80296100df3294bbc90ce.tar.zst
pttbbs-3727016a2521ae1fa3f80296100df3294bbc90ce.zip
- change over18 calculation as standalone function, in order user changed birthday.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3893 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/mbbsd.c')
-rw-r--r--mbbsd/mbbsd.c23
1 files changed, 7 insertions, 16 deletions
diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c
index d51f506e..08fa5fc1 100644
--- a/mbbsd/mbbsd.c
+++ b/mbbsd/mbbsd.c
@@ -1119,21 +1119,6 @@ user_login(void)
/* 初始化: random number 增加user跟時間的差異 */
mysrand();
- /* check if over18 */
- // 照實歲計算,沒生日的當作未滿 18
- if (cuser.year < 1 || cuser.month < 1)
- over18 = 0;
- else if( (ptime.tm_year - cuser.year) > 18)
- over18 = 1;
- else if (ptime.tm_year - cuser.year < 18)
- over18 = 0;
- else if ((ptime.tm_mon+1) > cuser.month)
- over18 = 1;
- else if ((ptime.tm_mon+1) < cuser.month)
- over18 = 0;
- else if (ptime.tm_mday >= cuser.day )
- over18 = 1;
-
log_usies("ENTER", fromhost);
#ifndef VALGRIND
setproctitle("%s: %s", margs, cuser.userid);
@@ -1206,6 +1191,7 @@ user_login(void)
move(t_lines - 4, 0);
clrtobot();
welcome_msg();
+ resolve_over18();
if( ifbirth ){
birthday_make_a_wish(&ptime, &lasttime);
@@ -1227,7 +1213,12 @@ user_login(void)
pressanykey();
#endif
} else {
- pressanykey();
+ // XXX no userlevel, no guest - what is this?
+ // clear();
+ // outs("此帳號停權中");
+ // pressanykey();
+ // exit(1);
+
check_mailbox_quota();
}