summaryrefslogtreecommitdiffstats
path: root/mbbsd/user.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-03-19 04:24:29 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-03-19 04:24:29 +0800
commit1425375ea3a291730332d631cda7b0abcd396939 (patch)
tree314e6c22f9b1b0bda5adbd13ac811b3b78f829b5 /mbbsd/user.c
parent4487211c2d8094548f7b8dc2fcad6da218b6a5ad (diff)
downloadpttbbs-1425375ea3a291730332d631cda7b0abcd396939.tar
pttbbs-1425375ea3a291730332d631cda7b0abcd396939.tar.gz
pttbbs-1425375ea3a291730332d631cda7b0abcd396939.tar.bz2
pttbbs-1425375ea3a291730332d631cda7b0abcd396939.tar.lz
pttbbs-1425375ea3a291730332d631cda7b0abcd396939.tar.xz
pttbbs-1425375ea3a291730332d631cda7b0abcd396939.tar.zst
pttbbs-1425375ea3a291730332d631cda7b0abcd396939.zip
fix bug(register)
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@49 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r--mbbsd/user.c63
1 files changed, 32 insertions, 31 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c
index 7f814b28..2069e084 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -1,4 +1,4 @@
-/* $Id: user.c,v 1.10 2002/03/18 16:52:52 in2 Exp $ */
+/* $Id: user.c,v 1.11 2002/03/18 20:24:29 in2 Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -811,23 +811,13 @@ static void toregister(char *email, char *genbuf, char *phone, char *career,
char buf[128];
sethomefile(buf, cuser.userid, "justify.wait");
- if( phone[0] == 0 ){
- if( (fn = fopen(buf, "r")) ){
- fgets(phone, 21, fn); phone[ strlen(phone) - 1] = 0;
- fgets(career,41, fn); career[strlen(career)- 1] = 0;
- fgets(ident, 12, fn); ident[ strlen(ident) - 1] = 0;
- fgets(rname, 21, fn); rname[ strlen(rname) - 1] = 0;
- fgets(addr, 51, fn); addr [ strlen(addr) - 1] = 0;
- fgets(mobile,21, fn); mobile[strlen(mobile)- 1] = 0;
- fclose(fn);
- }
- }
- else{
+ if( phone[0] != 0 ){
fn = fopen(buf, "w");
fprintf(fn, "%s\n%s\n%s\n%s\n%s\n%s\n",
phone, career, ident, rname, addr, mobile);
fclose(fn);
}
+
clear();
stand_title("認證設定");
move(2, 0);
@@ -841,17 +831,17 @@ static void toregister(char *email, char *genbuf, char *phone, char *career,
while( 1 ){
email[0] = 0;
getfield(10, "身分認證用", "E-Mail Address", email, 50);
- if( email[0] == 0 || strcmp(email, "x") == 0 ||
- strcmp(email, "X") == 0 || isvaildemail(email) )
+ if( strcmp(email, "x") == 0 || strcmp(email, "X") == 0 ||
+ isvaildemail(email) )
break;
else{
move(17, 0);
- prints("指定的 E-Mail 不合法, 若您無 E-Mail 請輸入 0");
+ prints("指定的 E-Mail 不合法,"
+ "若您無 E-Mail 請輸入 x由站長手動認證");
}
}
- if( email[0] == 0 ) /* 下次再來 */
- return;
- else if( email[0] == 'x' || email[0] == 'X' ){ /* 手動認證 */
+ strncpy(cuser.email, email, sizeof(cuser.email));
+ if( email[0] == 'x' || email[0] == 'X' ){ /* 手動認證 */
if ((fn = fopen(fn_register, "a"))) {
now = time(NULL);
fprintf(fn, "num: %d, %s", usernum, ctime(&now));
@@ -913,9 +903,29 @@ int u_register(void)
}
fclose(fn);
}
-
- memset(phone, 0, sizeof(phone));
- if( cuser.year != 0 ){ /* 已經第一次填過了~ ^^" */
+
+ strcpy(ident, cuser.ident);
+ strcpy(rname, cuser.realname);
+ strcpy(addr, cuser.address);
+ strcpy(email, cuser.email);
+ sprintf(mobile,"0%09d",cuser.mobile);
+ sprintf(birthday, "%02i/%02i/%02i",
+ cuser.month, cuser.day, cuser.year % 100);
+ sex_is[0]=(cuser.sex % 8)+'1';sex_is[1]=0;
+ career[0] = phone[0] = '\0';
+ sethomefile(genbuf, cuser.userid, "justify.wait");
+ if( (fn = fopen(genbuf, "r")) ){
+ fgets(phone, 21, fn); phone[ strlen(phone) - 1] = 0;
+ fgets(career,41, fn); career[strlen(career)- 1] = 0;
+ fgets(ident, 12, fn); ident[ strlen(ident) - 1] = 0;
+ fgets(rname, 21, fn); rname[ strlen(rname) - 1] = 0;
+ fgets(addr, 51, fn); addr [ strlen(addr) - 1] = 0;
+ fgets(mobile,21, fn); mobile[strlen(mobile)- 1] = 0;
+ fclose(fn);
+ }
+ if( cuser.year != 0 && /* 已經第一次填過了~ ^^" */
+ strcmp(cuser.email, "x") != 0 && /* 上次手動認證失敗 */
+ strcmp(cuser.email, "X") != 0 ) {
clear();
stand_title("EMail認證");
move(2, 0);
@@ -956,15 +966,6 @@ int u_register(void)
move(2, 0);
clrtobot();
- strcpy(ident, cuser.ident);
- strcpy(rname, cuser.realname);
- strcpy(addr, cuser.address);
- strcpy(email, cuser.email);
- sprintf(mobile,"0%09d",cuser.mobile);
- sprintf(birthday, "%02i/%02i/%02i",
- cuser.month, cuser.day, cuser.year % 100);
- sex_is[0]=(cuser.sex % 8)+'1';sex_is[1]=0;
- career[0] = phone[0] = '\0';
while(1) {
clear();
move(1, 0);