summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-12-14 16:02:18 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-12-14 16:02:18 +0800
commita08cfe5acdd59f907e88843908f0e30959893b67 (patch)
treeceae8bbc2b87e76d4ce2b4f1883559f7fc6d48d8
parent1c5eceb8c87f2b4374f8aede849708f5a511d6cd (diff)
downloadpttbbs-a08cfe5acdd59f907e88843908f0e30959893b67.tar
pttbbs-a08cfe5acdd59f907e88843908f0e30959893b67.tar.gz
pttbbs-a08cfe5acdd59f907e88843908f0e30959893b67.tar.bz2
pttbbs-a08cfe5acdd59f907e88843908f0e30959893b67.tar.lz
pttbbs-a08cfe5acdd59f907e88843908f0e30959893b67.tar.xz
pttbbs-a08cfe5acdd59f907e88843908f0e30959893b67.tar.zst
pttbbs-a08cfe5acdd59f907e88843908f0e30959893b67.zip
remove personal id from userinfo
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@585 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--mbbsd/user.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c
index 3bb78601..d3501822 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -1,4 +1,4 @@
-/* $Id: user.c,v 1.41 2002/12/05 12:37:00 in2 Exp $ */
+/* $Id: user.c,v 1.42 2002/12/14 08:02:18 in2 Exp $ */
#include "bbs.h"
static char *sex[8] = {
@@ -61,12 +61,11 @@ user_display(userec_t * u, int real)
sethomedir(genbuf, u->userid);
prints(" 私人信箱: %d 封 (購買信箱: %d 封)\n"
- " 身分證號: %s\n"
" 手機號碼: %010d\n"
" 生 日: %02i/%02i/%02i\n"
" 小雞名字: %s\n",
get_num_records(genbuf, sizeof(fileheader_t)),
- u->exmailbox, u->ident, u->mobile,
+ u->exmailbox, u->mobile,
u->month, u->day, u->year % 100, u->mychicken.name);
prints(" 註冊日期: %s", ctime(&u->firstlogin));
prints(" 前次光臨: %s", ctime(&u->lastlogin));