diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-07-03 17:08:14 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-07-03 17:08:14 +0800 |
commit | e25496bd2ca82b98f0caf9857d66593b26ebccac (patch) | |
tree | 2c66fcdb5cb7d0615bdaed8769ce0d5daea0815a /mbbsd/mail.c | |
parent | 086305902537f6662e32bbe26003e7a402327466 (diff) | |
download | pttbbs-e25496bd2ca82b98f0caf9857d66593b26ebccac.tar pttbbs-e25496bd2ca82b98f0caf9857d66593b26ebccac.tar.gz pttbbs-e25496bd2ca82b98f0caf9857d66593b26ebccac.tar.bz2 pttbbs-e25496bd2ca82b98f0caf9857d66593b26ebccac.tar.lz pttbbs-e25496bd2ca82b98f0caf9857d66593b26ebccac.tar.xz pttbbs-e25496bd2ca82b98f0caf9857d66593b26ebccac.tar.zst pttbbs-e25496bd2ca82b98f0caf9857d66593b26ebccac.zip |
if( !(strstr(fhdr->title, "���u") && strstr(fhdr->title, "�O��")) ){
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@408 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/mail.c')
-rw-r--r-- | mbbsd/mail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c index a4d47df7..35fced7e 100644 --- a/mbbsd/mail.c +++ b/mbbsd/mail.c @@ -1,4 +1,4 @@ -/* $Id: mail.c,v 1.15 2002/07/02 02:12:56 in2 Exp $ */ +/* $Id: mail.c,v 1.16 2002/07/03 09:08:14 in2 Exp $ */ #include "bbs.h" char currmaildir[32]; static char msg_cc[] = "\033[32m[¸s²Õ¦W³æ]\033[m\n"; @@ -1220,7 +1220,7 @@ static int mail_waterball(int ent, fileheader_t *fhdr, char *direct) char fname[500], genbuf[200]; FILE *fp; - if( !strstr(fhdr->title, "¼ö½u°O¿ý") ){ + if( !(strstr(fhdr->title, "¼ö½u") && strstr(fhdr->title, "°O¿ý")) ){ vmsg("¥²¶·¬O ¼ö½u°O¿ý ¤~¯à¨Ï¥Î¤ô²y¾ã²zªºò!"); return 1; } |