diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-12-05 20:37:00 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-12-05 20:37:00 +0800 |
commit | f5295530478fb9bfb615caf2bd62def21c95e34b (patch) | |
tree | a68a206862a7e8589549266dd1b3282de7fc63d2 | |
parent | 51a1858e75305e33c87ea12e1dd9a39040c0cca8 (diff) | |
download | pttbbs-f5295530478fb9bfb615caf2bd62def21c95e34b.tar pttbbs-f5295530478fb9bfb615caf2bd62def21c95e34b.tar.gz pttbbs-f5295530478fb9bfb615caf2bd62def21c95e34b.tar.bz2 pttbbs-f5295530478fb9bfb615caf2bd62def21c95e34b.tar.lz pttbbs-f5295530478fb9bfb615caf2bd62def21c95e34b.tar.xz pttbbs-f5295530478fb9bfb615caf2bd62def21c95e34b.tar.zst pttbbs-f5295530478fb9bfb615caf2bd62def21c95e34b.zip |
register
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@582 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/user.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/user.c b/pttbbs/mbbsd/user.c index 6e51a9fa..3bb78601 100644 --- a/pttbbs/mbbsd/user.c +++ b/pttbbs/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]) |