diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-08-19 21:58:06 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-08-19 21:58:06 +0800 |
commit | d7300f5b68cb99d92d420d20fbfe079c5310ef46 (patch) | |
tree | 843986e4aa511e486b14fe7e03ebacfc9e0e27c8 /mbbsd/register.c | |
parent | 07a3f1656ee0471d07138865feace636163d422a (diff) | |
download | pttbbs-d7300f5b68cb99d92d420d20fbfe079c5310ef46.tar pttbbs-d7300f5b68cb99d92d420d20fbfe079c5310ef46.tar.gz pttbbs-d7300f5b68cb99d92d420d20fbfe079c5310ef46.tar.bz2 pttbbs-d7300f5b68cb99d92d420d20fbfe079c5310ef46.tar.lz pttbbs-d7300f5b68cb99d92d420d20fbfe079c5310ef46.tar.xz pttbbs-d7300f5b68cb99d92d420d20fbfe079c5310ef46.tar.zst pttbbs-d7300f5b68cb99d92d420d20fbfe079c5310ef46.zip |
* WITH_EMAILDB was deprecated by USE_EMAILDB in pttbbs.conf.
* ambiguous user id check is toggled by WITH_REGCHECKD
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4756 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/register.c')
-rw-r--r-- | mbbsd/register.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/register.c b/mbbsd/register.c index 2f4bffcc..ea9f546a 100644 --- a/mbbsd/register.c +++ b/mbbsd/register.c @@ -706,7 +706,7 @@ new_register(void) else if (reserved_user_id(passbuf)) outs("此代號已由系統保留,請使用別的代號\n"); #if !defined(NO_CHECK_AMBIGUOUS_USERID) && defined(USE_REGCHECKD) - else if (check_ambiguous_userid_exist(passbuf) > 0) // ignore if error occurs + else if (regcheck_ambiguous_userid_exist(passbuf) > 0) // ignore if error occurs outs("此代號過於近似它人帳號,請改用別的代號。\n"); #endif else // success |