From 76746edd9196c752cf198765e1921f55978276e3 Mon Sep 17 00:00:00 2001 From: ptt Date: Mon, 29 Mar 2004 21:45:40 +0000 Subject: :p again passwd debug git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1630 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/passwd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mbbsd/passwd.c b/mbbsd/passwd.c index 7cf4e110..5cafc88e 100644 --- a/mbbsd/passwd.c +++ b/mbbsd/passwd.c @@ -60,7 +60,7 @@ passwd_update_money(int num) /* update money only */ sethomefile(path, getuserid(num), ".passwd"); - if ((pwdfd = open(path, O_WRONLY, 0600)) < 0) + if ((pwdfd = open(path, O_WRONLY)) < 0) { if(passwd_index_query(num, &user)<0) // tempory code, will be removed exit(1); @@ -99,7 +99,7 @@ passwd_update(int num, userec_t * buf) sethomefile(path, getuserid(num), ".passwd"); buf->money = moneyof(num); - if ((pwdfd = open(path, O_WRONLY, 0600)) < 0) + if ((pwdfd = open(path, O_WRONLY|O_CREAT, 0600)) < 0) exit(1); write(pwdfd, buf, sizeof(userec_t)); close(pwdfd); -- cgit v1.2.3