diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-03-31 10:52:32 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-03-31 10:52:32 +0800 |
commit | 389688bf4c143e2dc9d69613fdf4f653af7d0332 (patch) | |
tree | 4a1b9ffb01c7c127ccc14b4bcc56d35adab8b7f4 /mbbsd/user.c | |
parent | 68a3c5c7677ca92bf22093fbfd123d4b0566a1a2 (diff) | |
download | pttbbs-389688bf4c143e2dc9d69613fdf4f653af7d0332.tar pttbbs-389688bf4c143e2dc9d69613fdf4f653af7d0332.tar.gz pttbbs-389688bf4c143e2dc9d69613fdf4f653af7d0332.tar.bz2 pttbbs-389688bf4c143e2dc9d69613fdf4f653af7d0332.tar.lz pttbbs-389688bf4c143e2dc9d69613fdf4f653af7d0332.tar.xz pttbbs-389688bf4c143e2dc9d69613fdf4f653af7d0332.tar.zst pttbbs-389688bf4c143e2dc9d69613fdf4f653af7d0332.zip |
refining
cuser & passwd_update
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1649 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r-- | mbbsd/user.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c index 47cfa8e5..98b6fac7 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -42,7 +42,7 @@ u_loginview() if (pbits != cuser->loginview) { cuser->loginview = pbits; -// passwd_update(usernum, &cuser); + passwd_update(usernum, cuser); } return 0; } @@ -275,7 +275,7 @@ static void Customize(void) default: done = 1; } -// passwd_update(usernum, &cuser); + passwd_update(usernum, cuser); } pressanykey(); } @@ -688,7 +688,7 @@ u_switchproverb() fprintf(fp, "座右銘狀態為[自定型]要記得設座右銘的內容唷!!"); fclose(fp); } -// passwd_update(usernum, &cuser); + passwd_update(usernum, cuser); return 0; } |