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
commitf556b681c9a1222a5c5a63c39b9be70f7ee2646d (patch)
tree9e28c8629bf99dcf93317731262451e06d297be3
parent2170afe2abd1fa75825740fd4ce72fe86683836f (diff)
downloadpttbbs-f556b681c9a1222a5c5a63c39b9be70f7ee2646d.tar
pttbbs-f556b681c9a1222a5c5a63c39b9be70f7ee2646d.tar.gz
pttbbs-f556b681c9a1222a5c5a63c39b9be70f7ee2646d.tar.bz2
pttbbs-f556b681c9a1222a5c5a63c39b9be70f7ee2646d.tar.lz
pttbbs-f556b681c9a1222a5c5a63c39b9be70f7ee2646d.tar.xz
pttbbs-f556b681c9a1222a5c5a63c39b9be70f7ee2646d.tar.zst
pttbbs-f556b681c9a1222a5c5a63c39b9be70f7ee2646d.zip
remove personal id from userinfo
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@585 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/user.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/pttbbs/mbbsd/user.c b/pttbbs/mbbsd/user.c
index 3bb78601..d3501822 100644
--- a/pttbbs/mbbsd/user.c
+++ b/pttbbs/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));