diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-03-31 10:32:55 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-03-31 10:32:55 +0800 |
commit | 68a3c5c7677ca92bf22093fbfd123d4b0566a1a2 (patch) | |
tree | 0b47ce1e41a24a75b54538f25d4414f256dfeec6 /mbbsd/passwd.c | |
parent | 435f181e8b560b2b987b163c3f776f21b74a3c7d (diff) | |
download | pttbbs-68a3c5c7677ca92bf22093fbfd123d4b0566a1a2.tar pttbbs-68a3c5c7677ca92bf22093fbfd123d4b0566a1a2.tar.gz pttbbs-68a3c5c7677ca92bf22093fbfd123d4b0566a1a2.tar.bz2 pttbbs-68a3c5c7677ca92bf22093fbfd123d4b0566a1a2.tar.lz pttbbs-68a3c5c7677ca92bf22093fbfd123d4b0566a1a2.tar.xz pttbbs-68a3c5c7677ca92bf22093fbfd123d4b0566a1a2.tar.zst pttbbs-68a3c5c7677ca92bf22093fbfd123d4b0566a1a2.zip |
remove mmap of cuser
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1648 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/passwd.c')
-rw-r--r-- | mbbsd/passwd.c | 30 |
1 files changed, 3 insertions, 27 deletions
diff --git a/mbbsd/passwd.c b/mbbsd/passwd.c index 182040c8..4fb04652 100644 --- a/mbbsd/passwd.c +++ b/mbbsd/passwd.c @@ -57,11 +57,6 @@ passwd_update_money(int num) /* update money only */ if (num < 1 || num > MAX_USERS) return -1; - if (num == usernum) - { - cuser->money = money; - return 0; - } sethomefile(path, getuserid(num), ".passwd"); @@ -127,36 +122,17 @@ passwd_index_query(int num, userec_t * buf) return 0; } +userec_t userecbuf; int initcuser(char *userid) { - int pwdfd; - userec_t buf; - char path[256]; // Ptt: setup cuser and usernum here if(userid[0]=='\0') return -1; if(!(usernum = searchuser(userid)) || usernum > MAX_USERS) return -1; - - sethomefile(path, userid, ".passwd"); - if((pwdfd = open(path, O_RDWR)) < 0) - { - if(passwd_index_query(usernum, &buf)<0) - exit(1); - passwd_update(usernum, &buf); - if((pwdfd = open(path, O_RDWR)) < 0) exit(1); - } - cuser = (userec_t *) mmap(NULL, sizeof(userec_t), PROT_WRITE|PROT_READ, - MAP_NOSYNC | MAP_SHARED, pwdfd, 0); - - if(cuser == (userec_t *) -1) exit(1); - close(pwdfd); + passwd_query(usernum, &userecbuf); + cuser = &userecbuf; return usernum; } -int freecuser() -{ - return munmap(cuser, sizeof(userec_t)); -} - int passwd_query(int num, userec_t * buf) { |