From 946083d56cf47891fc698c09e86bb4816392b66e Mon Sep 17 00:00:00 2001 From: in2 Date: Thu, 17 Jul 2003 00:57:21 +0000 Subject: reduce SHM size(remove realname) git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@1054 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/mbbsd.c | 7 +++---- mbbsd/user.c | 8 ++++---- 2 files changed, 7 insertions(+), 8 deletions(-) (limited to 'mbbsd') diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c index a20188a6..da5c6c94 100644 --- a/mbbsd/mbbsd.c +++ b/mbbsd/mbbsd.c @@ -1,4 +1,4 @@ -/* $Id: mbbsd.c,v 1.88 2003/07/05 07:58:09 in2 Exp $ */ +/* $Id: mbbsd.c,v 1.89 2003/07/17 00:57:21 in2 Exp $ */ #include "bbs.h" #define SOCKET_QLEN 4 @@ -722,7 +722,7 @@ setup_utmp(int mode) uinfo.sex = cuser.sex % 8; uinfo.lastact = time(NULL); strlcpy(uinfo.userid, cuser.userid, sizeof(uinfo.userid)); - strlcpy(uinfo.realname, cuser.realname, sizeof(uinfo.realname)); + //strlcpy(uinfo.realname, cuser.realname, sizeof(uinfo.realname)); strlcpy(uinfo.username, cuser.username, sizeof(uinfo.username)); strlcpy(uinfo.from, fromhost, sizeof(uinfo.from)); uinfo.five_win = cuser.five_win; @@ -863,8 +863,7 @@ user_login() strlcpy(currutmp->username, cuser.username, sizeof(currutmp->username)); strlcpy(cuser.realname, name[(int)i], sizeof(cuser.realname)); - strlcpy(currutmp->realname, cuser.realname, - sizeof(currutmp->realname)); + //strlcpy(currutmp->realname, cuser.realname, sizeof(currutmp->realname)); strlcpy(cuser.address, addr[(int)i], sizeof(cuser.address)); cuser.sex = i % 8; currutmp->pager = 2; diff --git a/mbbsd/user.c b/mbbsd/user.c index 1a8fd81d..c706b741 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -1,4 +1,4 @@ -/* $Id: user.c,v 1.68 2003/07/17 00:56:39 in2 Exp $ */ +/* $Id: user.c,v 1.69 2003/07/17 00:57:21 in2 Exp $ */ #include "bbs.h" static char *sex[8] = { @@ -644,7 +644,7 @@ u_info() move(2, 0); user_display(&cuser, 0); uinfo_query(&cuser, 0, usernum); - strlcpy(currutmp->realname, cuser.realname, sizeof(currutmp->realname)); + //strlcpy(currutmp->realname, cuser.realname, sizeof(currutmp->realname)); strlcpy(currutmp->username, cuser.username, sizeof(currutmp->username)); return 0; } @@ -1080,7 +1080,7 @@ static char *isvalidname(char *rname) char *rejectstr[] = {"肥", "胖", "豬頭", "小白", "小明", "路人", "老王", "老李", "寶貝", "先生", "師哥", "老頭", "小姊", "小姐", "美女", "小妹", "大頭", - "公主", "同學", "寶寶", "公子", "大頭", "佚名", NULL}; + "公主", "同學", "寶寶", "公子", "大頭", NULL}; if( removespace(rname) && rname[0] < 0 && strlen(rname) >= 4 && !HaveRejectStr(rname, rejectstr) && @@ -1107,7 +1107,7 @@ static char *isvalidcareer(char *career) static char *isvalidaddr(char *addr) { char *rejectstr[] = - {"地球", "銀河", "火星", "附近", NULL}; + {"地球", "銀河", "火星", NULL}; if (!removespace(addr) || addr[0] > 0 || strlen(addr) < 15) return "這個地址並不合法"; -- cgit v1.2.3