diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-10-22 03:11:06 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-10-22 03:11:06 +0800 |
commit | 5417ac4001f50bf42edec20af139537db4e5311a (patch) | |
tree | 72cbd654edba30c52eee35ade2494a0e7282a510 /mbbsd | |
parent | a8ab4bdde4b7cf54695951871343a020728d6c47 (diff) | |
download | pttbbs-5417ac4001f50bf42edec20af139537db4e5311a.tar pttbbs-5417ac4001f50bf42edec20af139537db4e5311a.tar.gz pttbbs-5417ac4001f50bf42edec20af139537db4e5311a.tar.bz2 pttbbs-5417ac4001f50bf42edec20af139537db4e5311a.tar.lz pttbbs-5417ac4001f50bf42edec20af139537db4e5311a.tar.xz pttbbs-5417ac4001f50bf42edec20af139537db4e5311a.tar.zst pttbbs-5417ac4001f50bf42edec20af139537db4e5311a.zip |
change "Court to Police Station"
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3230 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-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 e6f78835..f9a407bc 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -191,8 +191,8 @@ mail_violatelaw(const char *crime, const char *police, const char *reason, const stampfile(genbuf, &fhdr); if (!(fp = fopen(genbuf, "w"))) return; - fprintf(fp, "作者: [Ptt法院]\n" - "標題: [報告] 違法判決報告\n" + fprintf(fp, "作者: [Ptt警察局]\n" + "標題: [報告] 違法報告\n" "時間: %s\n" ANSI_COLOR(1;32) "%s" ANSI_RESET "判決:\n " ANSI_COLOR(1;32) "%s" ANSI_RESET "因" ANSI_COLOR(1;35) "%s" ANSI_RESET "行為,\n違反本站站規,處以" ANSI_COLOR(1;35) "%s" ANSI_RESET ",特此通知" @@ -200,7 +200,7 @@ mail_violatelaw(const char *crime, const char *police, const char *reason, const ctime4(&now), police, crime, reason, result); fclose(fp); strcpy(fhdr.title, "[報告] 違法判決報告"); - strcpy(fhdr.owner, "[Ptt法院]"); + strcpy(fhdr.owner, "[Ptt警察局]"); sethomedir(genbuf, crime); append_record(genbuf, &fhdr, sizeof(fhdr)); } |