summaryrefslogtreecommitdiffstats
path: root/mbbsd
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-09 16:31:15 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-09 16:31:15 +0800
commitc7b5495e9dc10baf23bb3a781fc30c0a3f017aac (patch)
treeed8d6a062f046beb2ac2dc864dee17fe97cf3ac7 /mbbsd
parent05634a014663f9b3a9d432945b465f0dc0fde2f4 (diff)
downloadpttbbs-c7b5495e9dc10baf23bb3a781fc30c0a3f017aac.tar
pttbbs-c7b5495e9dc10baf23bb3a781fc30c0a3f017aac.tar.gz
pttbbs-c7b5495e9dc10baf23bb3a781fc30c0a3f017aac.tar.bz2
pttbbs-c7b5495e9dc10baf23bb3a781fc30c0a3f017aac.tar.lz
pttbbs-c7b5495e9dc10baf23bb3a781fc30c0a3f017aac.tar.xz
pttbbs-c7b5495e9dc10baf23bb3a781fc30c0a3f017aac.tar.zst
pttbbs-c7b5495e9dc10baf23bb3a781fc30c0a3f017aac.zip
incremental upgrade support (currently DBCSAWARE only)
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2814 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r--mbbsd/mbbsd.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c
index d9f48758..df34d206 100644
--- a/mbbsd/mbbsd.c
+++ b/mbbsd/mbbsd.c
@@ -1015,6 +1015,25 @@ user_login(void)
if(ptime.tm_yday!=lasttime.tm_yday)
STATINC(STAT_TODAYLOGIN_MAX);
+ {
+ /* If you wanna do incremental upgrade
+ * (like, added a function/flag that wants user to confirm againe)
+ * put it here.
+ */
+
+#if defined(DBCSAWARE) && defined(DBCSAWARE_UPGRADE_STARTTIME)
+ // define the real time you upgraded in your pttbbs.conf
+ if(cuser.lastlogin < DBCSAWARE_UPGRADE_STARTTIME)
+ {
+ if (u_detectDBCSAwareEvilClient())
+ cuser.uflag &= ~DBCSAWARE_FLAG;
+ else
+ cuser.uflag |= DBCSAWARE_FLAG;
+ }
+#endif
+
+ }
+
if (!PERM_HIDE(currutmp)) {
if(ptime.tm_yday!=lasttime.tm_yday)
STATINC(STAT_TODAYLOGIN_MIN);