diff options
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/admin.c | 3 | ||||
-rw-r--r-- | mbbsd/syspost.c | 26 |
2 files changed, 2 insertions, 27 deletions
diff --git a/mbbsd/admin.c b/mbbsd/admin.c index df1256a4..815bb854 100644 --- a/mbbsd/admin.c +++ b/mbbsd/admin.c @@ -1,4 +1,4 @@ -/* $Id: admin.c,v 1.8 2002/05/08 12:04:49 lwms Exp $ */ +/* $Id: admin.c,v 1.9 2002/05/08 14:11:33 lwms Exp $ */ #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -1092,7 +1092,6 @@ int give_money() { continue; id = uhash->userid[i]; give_id_money(id, money, fp2, tt, t); - post_give_money(cuser.userid , id, money); } } else { if(!(fp = fopen("etc/givemoney.txt", "r+"))) { diff --git a/mbbsd/syspost.c b/mbbsd/syspost.c index a2cdcea8..c7bd163b 100644 --- a/mbbsd/syspost.c +++ b/mbbsd/syspost.c @@ -1,4 +1,4 @@ -/* $Id: syspost.c,v 1.4 2002/05/08 12:04:49 lwms Exp $ */ +/* $Id: syspost.c,v 1.5 2002/05/08 14:11:33 lwms Exp $ */ #include <stdio.h> #include <string.h> #include <time.h> @@ -101,27 +101,3 @@ void post_newboard(char* bgroup, char* bname, char* bms){ post_msg("Record", title, genbuf, "[系統]"); } -void post_give_money(char *sysopid, char *userid, int money) { - FILE *fp; - fileheader_t fhdr; - time_t now = time(0); - char genbuf[200]; - - strcpy(genbuf, "boards/S/Security"); - stampfile(genbuf, &fhdr); - if(!(fp = fopen(genbuf,"w"))) - return; - - fprintf(fp, "作者: [系統安全局] 看板: Security\n" - "標題: [公安報告] 紅包機使用報告\n" - "時間: %s\n", ctime(&now)); - fprintf (fp, " 站長\033[1;32m%s給%s\033[m%d元\n", - sysopid, userid, money); - - sprintf(fhdr.title, "[公安報告] 站長%s使用紅包機報告", - cuser.userid); - strcpy(fhdr.owner, "[系統安全局]"); - append_record("boards/S/Security/.DIR", &fhdr, sizeof(fhdr)); -} - - |