summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-12-05 20:37:00 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-12-05 20:37:00 +0800
commitcc4e3f2acde90e3b4d82682da42ef66b19d25f80 (patch)
tree23e56d5d866a45d18af4075c642b6c56bdd8a55b
parenteffeeacf7aa1af8b4d48524076eff9b278659634 (diff)
downloadpttbbs-cc4e3f2acde90e3b4d82682da42ef66b19d25f80.tar
pttbbs-cc4e3f2acde90e3b4d82682da42ef66b19d25f80.tar.gz
pttbbs-cc4e3f2acde90e3b4d82682da42ef66b19d25f80.tar.bz2
pttbbs-cc4e3f2acde90e3b4d82682da42ef66b19d25f80.tar.lz
pttbbs-cc4e3f2acde90e3b4d82682da42ef66b19d25f80.tar.xz
pttbbs-cc4e3f2acde90e3b4d82682da42ef66b19d25f80.tar.zst
pttbbs-cc4e3f2acde90e3b4d82682da42ef66b19d25f80.zip
register
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@582 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--mbbsd/user.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c
index 6e51a9fa..3bb78601 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -1,4 +1,4 @@
-/* $Id: user.c,v 1.40 2002/10/26 00:12:52 in2 Exp $ */
+/* $Id: user.c,v 1.41 2002/12/05 12:37:00 in2 Exp $ */
#include "bbs.h"
static char *sex[8] = {
@@ -762,7 +762,8 @@ ispersonalid(char *inid)
return 0;
id[0] = toupper(id[0]);
- if( strcmp(id, "A100000001") == 0 )
+ if( strcmp(id, "A100000001") == 0 ||
+ strcmp(id, "A200000003") == 0 )
return 0;
/* A->10, B->11, ..H->17,I->34, J->18... */
while (lst[i] != id[0])